summaryrefslogtreecommitdiff
path: root/include/panic.h
diff options
context:
space:
mode:
authorEvan Green <evgreen@chromium.org>2019-09-23 13:23:09 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-05 00:47:53 +0000
commit44c473cdeae53aba84fc2ababeaeb7d022ea4dd7 (patch)
tree21e6b57ad698970f64c0e38cbf79cbd8e2f39e73 /include/panic.h
parent7200037dfc674977bffc3d58a15547d97f3ef681 (diff)
downloadchrome-ec-44c473cdeae53aba84fc2ababeaeb7d022ea4dd7.tar.gz
printf: Enable compile-time format checking
Add annotations to allow the compiler to check printf-style format strings in the EC. BUG=chromium:984041 TEST=make -j buildall BRANCH=None Change-Id: Ic39f37f8362372de7d289becea684d9da535599a Signed-off-by: Evan Green <evgreen@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1733101 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'include/panic.h')
-rw-r--r--include/panic.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/panic.h b/include/panic.h
index e25a68eccd..80a8fe1125 100644
--- a/include/panic.h
+++ b/include/panic.h
@@ -132,6 +132,7 @@ void panic_puts(const char *s);
* @param format printf-style format string
* @param ... Arguments to process
*/
+__attribute__((__format__(__printf__, 1, 2)))
void panic_printf(const char *format, ...);
/*