test-lib: fix broken printf

b8eecafd88 introduced usage of
printf without a format string.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
maint
Shawn O. Pearce 2008-10-12 13:13:59 -07:00
parent 969c877506
commit 72d404deba
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ if test -n "$color"; then
*) test -n "$quiet" && return;;
esac
shift
printf "* $*"
printf "* %s" "$*"
tput sgr0
echo
)