diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-10-12 13:13:59 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-10-12 13:13:59 -0700 |
commit | 72d404debaa804fca82fd9cf710fbde48c7305c6 (patch) | |
tree | f5865f3bfd918749c6c2da0b271354b4aee629f0 /t/test-lib.sh | |
parent | git apply --directory broken for new files (diff) | |
download | tgif-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.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh index 35698361ba..689ac2f4b4 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 ) |