diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-05-15 22:03:58 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-05-15 22:03:58 -0400 |
commit | 56472f6c28e278fb937e3456f91b52cc5ec0b143 (patch) | |
tree | f295db6ae4582f1fe54c8216317e99e09429cd96 /src | |
parent | 0c5516fe647de69e92517b99794792b99754044e (diff) |
librefetch: fix a call to `printf` that should have been to `print`
Diffstat (limited to 'src')
-rwxr-xr-x | src/librefetch/librefetch | 2 |
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 ;; |