summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-06-24 10:47:23 +0200
committerLudovic Courtès <ludo@gnu.org>2020-06-25 01:20:31 +0200
commitdb170ee9210431cdbb3716a6b9a26ca5b6d931ee (patch)
tree2a7c74ed55c44432e5f8efa977c37ab9f155ed3c /gnu/system
parent5adaf17bb0511ca6c65b81c714d14c40b70f1db9 (diff)
downloadguix-patches-db170ee9210431cdbb3716a6b9a26ca5b6d931ee.tar
guix-patches-db170ee9210431cdbb3716a6b9a26ca5b6d931ee.tar.gz
services: Add missing (ice-9 format) import.
These issues were reported by -Wformat, though they were harmless in practice because importing (ice-9 format) changes the global 'format' binding currently. * gnu/services/nix.scm: Import (ice-9 format). * gnu/services/web.scm: Likewise. * gnu/system/mapped-devices.scm: Likewise.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/mapped-devices.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/mapped-devices.scm b/gnu/system/mapped-devices.scm
index 7c58f876a3..c3f98302ad 100644
--- a/gnu/system/mapped-devices.scm
+++ b/gnu/system/mapped-devices.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2017, 2018 Mark H Weaver <mhw@netris.org>
;;;
@@ -40,6 +40,7 @@
#:use-module (srfi srfi-34)
#:use-module (srfi srfi-35)
#:use-module (ice-9 match)
+ #:use-module (ice-9 format)
#:export (mapped-device
mapped-device?
mapped-device-source