From 7274e7d31a096a17836261f3d9ccbd4095d510e0 Mon Sep 17 00:00:00 2001 From: morganamilo Date: Fri, 23 Mar 2018 04:42:44 +0000 Subject: [PATCH] Fix missing %s in callbacks.go --- callbacks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/callbacks.go b/callbacks.go index 0d8a7c0a..5bdaef02 100644 --- a/callbacks.go +++ b/callbacks.go @@ -75,7 +75,7 @@ func questionCallback(question alpm.QuestionAny) { } if num < 1 || num > size { - fmt.Printf(" invalid value: %d is not between %d and %d\n", red("error: "), num, 1, size) + fmt.Printf("%s invalid value: %d is not between %d and %d\n", red("error:"), num, 1, size) continue }