From 7940188ebfb28fc36426924b16fdc8255a88acaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 11 Sep 2017 23:00:40 +0200 Subject: [PATCH] system: Fix typo in 'read-boot-parameters'. Fixes a regression introduced in commit 075681d3501082c6e22df8abf29dfe89d85effc1. * gnu/system.scm (read-boot-parameters): For 'root-device', use 'device-sexp->device', not 'device->sexp'. --- gnu/system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/system.scm b/gnu/system.scm index 6f795d6292..bb7e8531ee 100644 --- a/gnu/system.scm +++ b/gnu/system.scm @@ -250,7 +250,7 @@ directly by the user." rest ...) (boot-parameters (label label) - (root-device (device->sexp root)) + (root-device (device-sexp->device root)) (bootloader-name (match (assq 'bootloader-name rest)