diff options
author | lloyd <[email protected]> | 2009-10-25 22:31:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-10-25 22:31:29 +0000 |
commit | 7ca895a057361cba037186b771f0e4ed00a6a0f3 (patch) | |
tree | 5ebce7ca3646489e3d62b3d136ba62e4fd105046 /src/utils/cpuid.cpp | |
parent | 059e215aa10c0c69ea52fb787b8b2e7ea3d1ea01 (diff) |
Add ; after call to VC++'s __cpuid, not a macro
Diffstat (limited to 'src/utils/cpuid.cpp')
-rw-r--r-- | src/utils/cpuid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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 <intrin.h> - #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) |