]> git.baikalelectronics.ru Git - kernel.git/commit
genksyms: add printf format attribute to error_with_pos()
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Sat, 20 May 2017 11:27:00 +0000 (13:27 +0200)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 5 Jun 2017 16:22:48 +0000 (01:22 +0900)
commitde2abf67685839c94ae12d1913dd61193928b233
treef453118f5f607c8c6ba4efe8cf5a5f9b126c4247
parente206a355d47505933f3b87154e86b8e2ca62e09e
genksyms: add printf format attribute to error_with_pos()

When compiling with -Wsuggest-attribute=format in HOSTCFLAGS, gcc
complains that error_with_pos() may be declared with a printf format
attribute:

    scripts/genksyms/genksyms.c:726:3: warning: function might be
    possible candidate for ‘gnu_printf’ format attribute
    [-Wsuggest-attribute=format]
       vfprintf(stderr, fmt, args);
       ^~~~~~~~

This would allow catching printf-format errors at compile time in
callers to error_with_pos(). Add this attribute.

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/genksyms/genksyms.h