Skip to content

Commit 72d404d

Browse files
committed
test-lib: fix broken printf
b8eecaf introduced usage of printf without a format string. Signed-off-by: Shawn O. Pearce <[email protected]>
1 parent 969c877 commit 72d404d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/test-lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ if test -n "$color"; then
112112
*) test -n "$quiet" && return;;
113113
esac
114114
shift
115-
printf "* $*"
115+
printf "* %s" "$*"
116116
tput sgr0
117117
echo
118118
)

0 commit comments

Comments
 (0)