Tom Hughes has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/63000 )
Change subject: layout: space needed between literal and identifier ......................................................................
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