diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-15 12:36:44 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-02-15 12:36:44 +0100 |
commit | 666a9a4c4d90c70e91272e72dcf3592410f1b5d0 (patch) | |
tree | a51e156d823cba1dac5fdd5a03c3e277d302a6ce | |
parent | d40358a1c52079e238c48bf40bff504e55a9f758 (diff) | |
download | busybox-w32-666a9a4c4d90c70e91272e72dcf3592410f1b5d0.tar.gz busybox-w32-666a9a4c4d90c70e91272e72dcf3592410f1b5d0.tar.bz2 busybox-w32-666a9a4c4d90c70e91272e72dcf3592410f1b5d0.zip |
applets/usage_pod.c: placate gcc
"error: format not a string literal and no format arguments"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | applets/usage_pod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/usage_pod.c b/applets/usage_pod.c index ccc166aed..9e6d3f0ee 100644 --- a/applets/usage_pod.c +++ b/applets/usage_pod.c | |||
@@ -71,7 +71,7 @@ int main(void) | |||
71 | } else { | 71 | } else { |
72 | printf(", "); | 72 | printf(", "); |
73 | } | 73 | } |
74 | printf(usage_array[i].aname); | 74 | printf("%s", usage_array[i].aname); |
75 | col += len2; | 75 | col += len2; |
76 | } | 76 | } |
77 | printf("\n\n"); | 77 | printf("\n\n"); |