From ac73e1b5084386b5908faefc2be6c29f3a9ea180 Mon Sep 17 00:00:00 2001 From: toddouska Date: Mon, 19 May 2014 14:33:15 -0700 Subject: [PATCH] fix visual studio cpuid arg warning --- ctaocrypt/src/aes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctaocrypt/src/aes.c b/ctaocrypt/src/aes.c index 719017c7a..000210868 100644 --- a/ctaocrypt/src/aes.c +++ b/ctaocrypt/src/aes.c @@ -1566,7 +1566,7 @@ static const word32 Td[5][256] = { #else #include - #define cpuid(a,b) __cpuid(a,b) + #define cpuid(a,b) __cpuid((int*)a,b) #define XASM_LINK(f)