diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-23 13:08:30 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-09-23 13:08:30 -0400 |
commit | 46e8d5b656945179d7dc79c6d5c93034f1495367 (patch) | |
tree | f1a058bf743b40e40ba64699f735c12a9d6d6b10 /checkpkg.in | |
parent | 6fbdc4eb481302541cf8fa282fb3453e4c5d0d16 (diff) | |
download | devtools32-46e8d5b656945179d7dc79c6d5c93034f1495367.tar.xz |
checkpkg: I missed a case of string interpolation
Diffstat (limited to 'checkpkg.in')
-rw-r--r-- | checkpkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkpkg.in b/checkpkg.in index ac4226c..2cceafa 100644 --- a/checkpkg.in +++ b/checkpkg.in @@ -76,7 +76,7 @@ for _pkgname in "${pkgname[@]}"; do done cd .. else - msg "No soname differences for $_pkgname." + msg "No soname differences for %s." "$_pkgname" fi done |