From f4034280362547c77ff3f544b1bcbc1356754e9a Mon Sep 17 00:00:00 2001 From: Alex 'AdUser' Z Date: Tue, 17 Jan 2017 17:30:08 +1000 Subject: [PATCH] * fix member name : clang consider this some macro name --- src/record.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/record.h b/src/record.h index 3b1529e..ab9bd36 100644 --- a/src/record.h +++ b/src/record.h @@ -17,7 +17,7 @@ typedef struct __attribute__((__packed__)) { uint8_t clevel_b; /**< color level: blue */ uint16_t image_w; /**< image width */ uint16_t image_h; /**< image height */ - unsigned char __unused[8]; /**< padding */ + unsigned char _unused[8]; /**< padding */ unsigned char bitmap[SIMDB_BITMAP_SIZE]; /**< image luma bitmap */ } simdb_urec_t;