diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-10-06 11:03:27 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-10-06 11:03:27 +0200 |
commit | 6a317919cf0f9dbc651a4a41f9ed99c49bf2d543 (patch) | |
tree | 9454b6c587b75ee1e3625be64f39cc39a5154db6 /gnu/build/file-systems.scm | |
parent | 68932812b8f6581dda4bf1896235492f687b7cc9 (diff) | |
parent | 8bde6a524e19d2bc9763b84dbf99959faf653bf8 (diff) | |
download | gnu-guix-6a317919cf0f9dbc651a4a41f9ed99c49bf2d543.tar gnu-guix-6a317919cf0f9dbc651a4a41f9ed99c49bf2d543.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/build/file-systems.scm')
-rw-r--r-- | gnu/build/file-systems.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/build/file-systems.scm b/gnu/build/file-systems.scm index 32885f1d2e..140bcb414b 100644 --- a/gnu/build/file-systems.scm +++ b/gnu/build/file-systems.scm @@ -415,12 +415,12 @@ was READ is = to the given value." (partition-predicate read-partition-label string=?)) (define partition-uuid-predicate - (partition-predicate read-partition-uuid bytevector=?)) + (partition-predicate read-partition-uuid uuid=?)) (define luks-partition-uuid-predicate (partition-predicate (partition-field-reader read-luks-header luks-header-uuid) - bytevector=?)) + uuid=?)) (define (find-partition predicate) "Return the first partition found that matches PREDICATE, or #f if none |