summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-05-15 22:03:58 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-05-15 22:03:58 -0400
commit56472f6c28e278fb937e3456f91b52cc5ec0b143 (patch)
treef295db6ae4582f1fe54c8216317e99e09429cd96
parent0c5516fe647de69e92517b99794792b99754044e (diff)
librefetch: fix a call to `printf` that should have been to `print`
-rwxr-xr-xsrc/librefetch/librefetch2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librefetch/librefetch b/src/librefetch/librefetch
index 65f5de9..98d85a2 100755
--- a/src/librefetch/librefetch
+++ b/src/librefetch/librefetch
@@ -233,7 +233,7 @@ parse_options() {
makepkg_opts+=("$arg")
$have_opt && makepkg_opts+=("$opt")
else
- printf '%s: invalid flag: %s' "$cmd" "$arg"
+ print '%s: invalid flag: %s' "$cmd" "$arg"
return 1
fi
;;