test-lib: fix broken printf
b8eecafd888d219633f4c29e8b6a90fc21a46dfd introduced usage of printf without a format string. Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
parent
969c877506
commit
72d404deba
@ -112,7 +112,7 @@ if test -n "$color"; then
|
|||||||
*) test -n "$quiet" && return;;
|
*) test -n "$quiet" && return;;
|
||||||
esac
|
esac
|
||||||
shift
|
shift
|
||||||
printf "* $*"
|
printf "* %s" "$*"
|
||||||
tput sgr0
|
tput sgr0
|
||||||
echo
|
echo
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user