diff options
-rw-r--r-- | flash.h | 3 | ||||
-rw-r--r-- | flashrom.c | 2 | ||||
-rw-r--r-- | udelay.c | 2 |
3 files changed, 4 insertions, 3 deletions
@@ -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 diff --git a/flashrom.c b/flashrom.c index 8a9745493..73145a9a7 100644 --- a/flashrom.c +++ b/flashrom.c @@ -394,7 +394,7 @@ struct shutdown_func_data { int register_shutdown(void (*function) (void *data), void *data) { if (shutdown_fn_count >= SHUTDOWN_MAXFN) { - msg_perr("Tried to register more than %n shutdown functions.\n", + msg_perr("Tried to register more than %i shutdown functions.\n", SHUTDOWN_MAXFN); return 1; } @@ -91,7 +91,7 @@ void myusec_calibrate_delay(void) msg_pinfo("Calibrating delay loop... "); resolution = measure_os_delay_resolution(); if (resolution) { - msg_pdbg("OS timer resolution is %u usecs, ", resolution); + msg_pdbg("OS timer resolution is %lu usecs, ", resolution); } else { msg_pinfo("OS timer resolution is unusable. "); } |