Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Unified Diff: firmware/arch/arm/include/biosincludes.h

Issue 5687001: Fix PRIu64 definition to llu. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | firmware/stub/include/biosincludes.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/arch/arm/include/biosincludes.h
diff --git a/firmware/arch/arm/include/biosincludes.h b/firmware/arch/arm/include/biosincludes.h
index e2a1d65bffc881fc49ff9ce52b88d2756b86295b..b7feacb1169ce565dc3fc5f2ba190f729ab44631 100644
--- a/firmware/arch/arm/include/biosincludes.h
+++ b/firmware/arch/arm/include/biosincludes.h
@@ -20,7 +20,7 @@ typedef unsigned int size_t;
#endif
#define UINT64_C(x) ((uint64_t) x)
-#define PRIu64 "ll"
+#define PRIu64 "llu"
extern void debug(const char *format, ...);
#define POSSIBLY_UNUSED __attribute__((unused))
« no previous file with comments | « no previous file | firmware/stub/include/biosincludes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698