diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-01-09 16:42:19 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-01-09 16:42:19 -0500 |
commit | 079a9c8229692c8c68899a9ab06693f830c1a091 (patch) | |
tree | bd5a431d75c56e736e0e7c638ecbfb22d115ad94 /test/test-libudev.c | |
parent | libudev: hwdb - use libudev not systemd logging (diff) | |
download | eudev-079a9c8229692c8c68899a9ab06693f830c1a091.tar.gz eudev-079a9c8229692c8c68899a9ab06693f830c1a091.tar.bz2 eudev-079a9c8229692c8c68899a9ab06693f830c1a091.zip |
Add more _printf_'s for format-nonliterals
Clang is a bit more strict wrt format-nonliterals:
http://clang.llvm.org/docs/LanguageExtensions.html#format-string-checking
Adding these extra printf attributes also makes gcc able to find more
problems. E.g. this patch uncovers a format issue in udev-builtin-path_id.c
Some parts looked intetional about breaking the format-nonliteral check.
I added some supression for warnings there.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'test/test-libudev.c')
-rw-r--r-- | test/test-libudev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/test-libudev.c b/test/test-libudev.c index 716767ba5..b2c45360b 100644 --- a/test/test-libudev.c +++ b/test/test-libudev.c @@ -33,6 +33,7 @@ #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) +_printf_(6,0) static void log_fn(struct udev *udev, int priority, const char *file, int line, const char *fn, const char *format, va_list args) |