From: Shawn O. Pearce Date: Sun, 12 Oct 2008 20:13:59 +0000 (-0700) Subject: test-lib: fix broken printf X-Git-Tag: v1.6.0.3~19 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=72d404debaa804fca82fd9cf710fbde48c7305c6;p=git.git test-lib: fix broken printf b8eecafd888d219633f4c29e8b6a90fc21a46dfd introduced usage of printf without a format string. Signed-off-by: Shawn O. Pearce --- diff --git a/t/test-lib.sh b/t/test-lib.sh index 35698361b..689ac2f4b 100644 --- a/t/test-lib.sh +++ b/t/test-lib.sh @@ -112,7 +112,7 @@ if test -n "$color"; then *) test -n "$quiet" && return;; esac shift - printf "* $*" + printf "* %s" "$*" tput sgr0 echo )