Skip to content

Commit

Permalink
Fix missing %s in callbacks.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Morganamilo committed Mar 23, 2018
1 parent f018c0c commit 7274e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion callbacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 7274e7d

Please sign in to comment.