From 7ca895a057361cba037186b771f0e4ed00a6a0f3 Mon Sep 17 00:00:00 2001 From: lloyd Date: Sun, 25 Oct 2009 22:31:29 +0000 Subject: Add ; after call to VC++'s __cpuid, not a macro --- src/utils/cpuid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils') diff --git a/src/utils/cpuid.cpp b/src/utils/cpuid.cpp index b92afbde3..f79e3a912 100644 --- a/src/utils/cpuid.cpp +++ b/src/utils/cpuid.cpp @@ -15,7 +15,7 @@ #if defined(BOTAN_BUILD_COMPILER_IS_MSVC) #include - #define CALL_CPUID(type, out) do { __cpuid((int*)out, type) } while(0) + #define CALL_CPUID(type, out) do { __cpuid((int*)out, type); } while(0) #elif defined(BOTAN_BUILD_COMPILER_IS_ICC) -- cgit v1.2.3