diff options
author | Allan McRae <allan@archlinux.org> | 2013-02-10 16:47:39 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-02-13 11:50:33 +1000 |
commit | 3fa2830829de2e3aa4bb916f164ae2fd75542ef3 (patch) | |
tree | f3bc49fdda7a506314e3fadac7bab37328e31dc8 /src/util/testpkg.c | |
parent | 05b0d7e799416b48bb8b40ea199896e2b988698c (diff) |
Add format attributes to all required functions
Fixes all clang warnings with -Wformat-literal.
Also, fix genuine formating issue discovered once adding these attributes
and add a cast to prevent a gcc warning.
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'src/util/testpkg.c')
-rw-r--r-- | src/util/testpkg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/testpkg.c b/src/util/testpkg.c index 96400a75..10b2f2c2 100644 --- a/src/util/testpkg.c +++ b/src/util/testpkg.c @@ -24,6 +24,7 @@ #define BASENAME "testpkg" +__attribute__((format(printf, 2, 0))) static void output_cb(alpm_loglevel_t level, const char *fmt, va_list args) { if(fmt[0] == '\0') { |