Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2008-10-13 00:13:59 +0400
committerShawn O. Pearce <spearce@spearce.org>2008-10-13 00:13:59 +0400
commit72d404debaa804fca82fd9cf710fbde48c7305c6 (patch)
treef5865f3bfd918749c6c2da0b271354b4aee629f0 /t/test-lib.sh
parent969c877506cf8cc760c7b251fef6c5b6850bfc19 (diff)
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 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
)