ui: Fix format string in `warning'.
* guix/ui.scm (warning)[augmented-format-string]: Add missing ~*.
This commit is contained in:
parent
dd36b51bf7
commit
801486fe46
|
@ -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: "))
|
||||
|
|
Loading…
Reference in New Issue