Joel Kitching has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/33780
Change subject: cbfstool/fit: need inttypes.h for PRIx64 ......................................................................
cbfstool/fit: need inttypes.h for PRIx64
This is causing coreboot build in Chromium OS to fail.
BUG=None TEST=emerge-eve coreboot BRANCH=none
Change-Id: I4faa140b3046651b4ed0a9aeefe437048c6ef0da Signed-off-by: Joel Kitching kitching@google.com --- M util/cbfstool/fit.c 1 file changed, 1 insertion(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/80/33780/1
diff --git a/util/cbfstool/fit.c b/util/cbfstool/fit.c index 4cd84f2..ee12c96 100644 --- a/util/cbfstool/fit.c +++ b/util/cbfstool/fit.c @@ -15,6 +15,7 @@ * GNU General Public License for more details. */
+#include <inttypes.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h>