summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-06-04 23:20:21 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2010-06-04 23:20:21 +0000
commit41fe2c78d422ad892056521848d95cd8cb4588a6 (patch)
treeea4bbb6158dd337b600e537a4b139004c5ff527c /flash.h
parent9130c5b3892d3b8b6de11dae3d7d4a9421810f5d (diff)
downloadflashrom-41fe2c78d422ad892056521848d95cd8cb4588a6.zip
flashrom-41fe2c78d422ad892056521848d95cd8cb4588a6.tar.gz
Gcc and clang can check format strings of printf-like functions
Since we don't support any other compilers right now, enable that extension unconditionally. Fix the bugs found by format string checking. Corresponding to flashrom svn r1032. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Sean Nelson <audiohacked@gmail.com>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/flash.h b/flash.h
index 84ee511..cf3bd21 100644
--- a/flash.h
+++ b/flash.h
@@ -591,7 +591,8 @@ int doit(struct flashchip *flash, int force, char *filename, int read_it, int wr
#define NT 1 /* Not tested */
/* cli_output.c */
-int print(int type, const char *fmt, ...);
+/* Let gcc and clang check for correct printf-style format strings. */
+int print(int type, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
#define MSG_ERROR 0
#define MSG_INFO 1
#define MSG_DEBUG 2
OpenPOWER on IntegriCloud