Skip to content

Commit

Permalink
test-lib: fix broken printf
Browse files Browse the repository at this point in the history
b8eecaf introduced usage of
printf without a format string.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
  • Loading branch information
Shawn O. Pearce committed Oct 12, 2008
1 parent 969c877 commit 72d404d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t/test-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ if test -n "$color"; then
*) test -n "$quiet" && return;;
esac
shift
printf "* $*"
printf "* %s" "$*"
tput sgr0
echo
)
Expand Down

0 comments on commit 72d404d

Please sign in to comment.