From 0202181245297a9e847c05f4a18623219d95e93e Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Fri, 2 Mar 2012 16:49:44 +0100 Subject: libcacard: Fix compilation with gcc-4.7 VCARD_ATR_PREFIX is used as part of an array initializer so it should not have () around it, so far this happened to work, but gcc-4.7 does not like it. Signed-off-by: Hans de Goede Signed-off-by: Anthony Liguori --- libcacard/vcardt.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcacard') diff --git a/libcacard/vcardt.h b/libcacard/vcardt.h index d4d8e2ed18..d3e9522774 100644 --- a/libcacard/vcardt.h +++ b/libcacard/vcardt.h @@ -26,8 +26,8 @@ typedef struct VCardEmulStruct VCardEmul; #define MAX_CHANNEL 4 /* create an ATR with appropriate historical bytes */ -#define VCARD_ATR_PREFIX(size) (0x3b, 0x68+(size), 0x00, 0xff, \ - 'V', 'C', 'A', 'R', 'D', '_') +#define VCARD_ATR_PREFIX(size) 0x3b, 0x68+(size), 0x00, 0xff, \ + 'V', 'C', 'A', 'R', 'D', '_' typedef enum { -- cgit v1.2.1