summaryrefslogtreecommitdiff
path: root/include/test_util.h
diff options
context:
space:
mode:
authorEvan Green <evgreen@chromium.org>2019-09-23 13:19:18 -0700
committerCommit Bot <commit-bot@chromium.org>2019-10-05 00:47:52 +0000
commit7200037dfc674977bffc3d58a15547d97f3ef681 (patch)
treee9b7630db4f17ec7bf6fbaf01322a05ff0ee6419 /include/test_util.h
parent2eade31e87a7662dc03dcead556917dfa13d0983 (diff)
downloadchrome-ec-7200037dfc674977bffc3d58a15547d97f3ef681.tar.gz
printf: Fix formatting errors
This change fixes the printf formatting errors found by the compile-time prinf format checker. The errors fall into a few categories: 1. Incorrect size specifier (missing or extra l). 2. Missing or extra arguments. 3. Bad line splitting. BUG=chromium:984041 TEST=make -j buildall BRANCH=none Change-Id: I5618097a581210b9fcbfc81560dec050ae30b61c Signed-off-by: Evan Green <evgreen@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1819653 Reviewed-by: Jack Rosenthal <jrosenth@chromium.org>
Diffstat (limited to 'include/test_util.h')
-rw-r--r--include/test_util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/test_util.h b/include/test_util.h
index 55b1849926..124ef77aa4 100644
--- a/include/test_util.h
+++ b/include/test_util.h
@@ -52,8 +52,8 @@
#define TEST_EQ(a, b, fmt) TEST_OPERATOR(a, b, ==, fmt)
#define TEST_NE(a, b, fmt) TEST_OPERATOR(a, b, !=, fmt)
-#define TEST_BITS_SET(a, bits) TEST_OPERATOR(a & bits, bits, ==, "%u")
-#define TEST_BITS_CLEARED(a, bits) TEST_OPERATOR(a & bits, 0, ==, "%u")
+#define TEST_BITS_SET(a, bits) TEST_OPERATOR(a & (int)bits, (int)bits, ==, "%u")
+#define TEST_BITS_CLEARED(a, bits) TEST_OPERATOR(a & (int)bits, 0, ==, "%u")
#define __ABS(n) ((n) > 0 ? (n) : -(n))