test-lib: fix broken printf
b8eecafd88
introduced usage of
printf without a format string.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
maint
parent
969c877506
commit
72d404deba
|
@ -112,7 +112,7 @@ if test -n "$color"; then
|
|||
*) test -n "$quiet" && return;;
|
||||
esac
|
||||
shift
|
||||
printf "* $*"
|
||||
printf "* %s" "$*"
|
||||
tput sgr0
|
||||
echo
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue