ui: Fix format string in `warning'. * guix/ui.scm (warning)[augmented-format-string]: Add missing ~*.
1 files changed, 1 insertions(+), 1 deletions(-) M guix/ui.scm
M guix/ui.scm => guix/ui.scm +1 -1
@@ 381,7 381,7 @@ WIDTH columns." ;; All this just to preserve `-Wformat' warnings. Too much? (define (augmented-format-string fmt) - (string-append "~:[~;guix ~a: ~]~a" (syntax->datum fmt))) + (string-append "~:[~*~;guix ~a: ~]~a" (syntax->datum fmt))) (define prefix #'(_ "warning: "))