test-lib: fix broken printf

b8eecafd888d219633f4c29e8b6a90fc21a46dfd introduced usage of
printf without a format string.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
Shawn O. Pearce 2008-10-12 13:13:59 -07:00
parent 969c877506
commit 72d404deba

View File

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