diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-04 23:12:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-04 23:12:41 +0200 |
commit | 49feac7a5422eea9f007845fb8ccc6bd616495fe (patch) | |
tree | 56b276ac919aa371617f9e6455197f6d5e21fdff /distro.scm | |
parent | f4544767b4c38be75aa6566558f353682b8c4412 (diff) | |
download | patches-49feac7a5422eea9f007845fb8ccc6bd616495fe.tar patches-49feac7a5422eea9f007845fb8ccc6bd616495fe.tar.gz |
distro: Fix typo in warning message.
* distro.scm (package-files): Add missing newline in warning message.
Diffstat (limited to 'distro.scm')
-rw-r--r-- | distro.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distro.scm b/distro.scm index fc48285bbf..f697ad3601 100644 --- a/distro.scm +++ b/distro.scm @@ -67,7 +67,7 @@ (const #f) ; skip (lambda (path stat errno result) (format (current-error-port) - (_ "warning: cannot access `~a': ~a") + (_ "warning: cannot access `~a': ~a~%") path (strerror errno)) result) '() |