diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-08-16 02:20:09 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-08-16 02:20:09 -0400 |
commit | 3aca3b64077cfdb5132c08958c5e0e873aca89d2 (patch) | |
tree | d4ae2e90b5b0bf54b9fb0ae946cfa163f545660c /arch-nspawn.in | |
parent | 9862c71c160631bfc1a14ccbd42688c547ca9c0b (diff) | |
download | devtools32-3aca3b64077cfdb5132c08958c5e0e873aca89d2.tar.xz |
Avoid having code/variables in format strings.
Diffstat (limited to 'arch-nspawn.in')
-rw-r--r-- | arch-nspawn.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch-nspawn.in b/arch-nspawn.in index a05ca1c..66a0f37 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -32,7 +32,7 @@ while getopts 'hC:M:c:' arg; do M) makepkg_conf="$OPTARG" ;; c) cache_dir="$OPTARG" ;; h|?) usage ;; - *) error "invalid argument '$arg'"; usage ;; + *) error "invalid argument '%s'" "$arg"; usage ;; esac done shift $(($OPTIND - 1)) |