diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-06-24 10:47:23 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-06-25 01:20:31 +0200 |
commit | db170ee9210431cdbb3716a6b9a26ca5b6d931ee (patch) | |
tree | 2a7c74ed55c44432e5f8efa977c37ab9f155ed3c /gnu/services/web.scm | |
parent | 5adaf17bb0511ca6c65b81c714d14c40b70f1db9 (diff) | |
download | guix-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/services/web.scm')
-rw-r--r-- | gnu/services/web.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/services/web.scm b/gnu/services/web.scm index 9fcfe8a0dc..63d2324b91 100644 --- a/gnu/services/web.scm +++ b/gnu/services/web.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 David Thompson <davet@gnu.org> -;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2016 Nikita <nikita@n0.is> ;;; Copyright © 2016, 2017, 2018 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net> @@ -57,6 +57,7 @@ #:use-module (srfi srfi-1) #:use-module (srfi srfi-9) #:use-module (ice-9 match) + #:use-module (ice-9 format) #:export (<httpd-configuration> httpd-configuration httpd-configuration? |