diff options
author | Luke Shumaker <lukeshu@parabola.nu> | 2017-04-02 04:09:55 -0400 |
---|---|---|
committer | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2017-04-05 22:11:16 +0200 |
commit | cb35d74f8ce0e1ad489c59d608877e4d6b34ca85 (patch) | |
tree | 1e03536795be58879ae0af8964b55545c51b184b /arch-nspawn.in | |
parent | 14d5e1c21b69975a8d30aba059e1012595d48bba (diff) | |
download | devtools32-cb35d74f8ce0e1ad489c59d608877e4d6b34ca85.tar.xz |
Avoid using string interpolation; use printf format strings instead.
This involves extending the signature of lib/common.sh's `stat_busy()`,
`lock()`, and `slock()`. The `mesg=$1; shift` in stat_busy even suggests
that this is what was originally intended from it.
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 9787415..7481d82 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -33,7 +33,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)) |