aboutsummaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2008-10-12 13:13:59 -0700
committerShawn O. Pearce <spearce@spearce.org>2008-10-12 13:13:59 -0700
commit72d404debaa804fca82fd9cf710fbde48c7305c6 (patch)
treef5865f3bfd918749c6c2da0b271354b4aee629f0 /t/test-lib.sh
parent969c877506cf8cc760c7b251fef6c5b6850bfc19 (diff)
downloadgit-72d404debaa804fca82fd9cf710fbde48c7305c6.tar.gz
git-72d404debaa804fca82fd9cf710fbde48c7305c6.tar.xz
test-lib: fix broken printf
b8eecafd888d219633f4c29e8b6a90fc21a46dfd introduced usage of printf without a format string. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh2
1 files changed, 1 insertions, 1 deletions
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
)