summaryrefslogtreecommitdiff
path: root/extra
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 /extra
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 'extra')
-rw-r--r--extra/i2c_pseudo/anprintf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/extra/i2c_pseudo/anprintf.h b/extra/i2c_pseudo/anprintf.h
index c73eb24c6c..c2d66c494b 100644
--- a/extra/i2c_pseudo/anprintf.h
+++ b/extra/i2c_pseudo/anprintf.h
@@ -130,6 +130,7 @@ static ssize_t vanprintf(char **out, ssize_t max_size, gfp_t gfp,
* ENOTRECOVERABLE: An unexpected condition occurred. This may indicate
* a bug.
*/
+__attribute__((__format__(__printf__, 4, 5)))
static ssize_t anprintf(char **out, ssize_t max_size, gfp_t gfp,
const char *fmt, ...)
{