Tom Hughes has uploaded this change for review.

View Change

layout: space needed between literal and identifier

Fixes C++ compiler warning:
error: invalid suffix on literal; C++11 requires a space between literal
and identifier [-Wreserved-user-defined-literal]

BUG=b:144959033
TEST=emerge-hatch flashrom

Change-Id: I04f5572d6c2dc27b7c54ee6ee97874a7a1940229
Signed-off-by: Tom Hughes <tomhughes@chromium.org>
---
M layout.h
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/00/63000/1
diff --git a/layout.h b/layout.h
index abbdc22..afac07f 100644
--- a/layout.h
+++ b/layout.h
@@ -30,7 +30,7 @@
typedef uint32_t chipsize_t; /* Able to store the number of bytes of any supported flash memory. */
#define FL_MAX_CHIPOFF_BITS (24)
#define FL_MAX_CHIPOFF ((chipoff_t)(1ULL<<FL_MAX_CHIPOFF_BITS)-1)
-#define PRIxCHIPOFF "06"PRIx32
+#define PRIxCHIPOFF "06" PRIx32
#define PRIuCHIPSIZE PRIu32

#define MAX_ROMLAYOUT 128

To view, visit change 63000. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: I04f5572d6c2dc27b7c54ee6ee97874a7a1940229
Gerrit-Change-Number: 63000
Gerrit-PatchSet: 1
Gerrit-Owner: Tom Hughes <tomhughes@chromium.org>
Gerrit-MessageType: newchange