From 0a1e094a180648d912ee34db8bc2b9688cdfca36 Mon Sep 17 00:00:00 2001 From: "U-X1\\korpela" Date: Thu, 1 May 2014 10:42:46 -0700 Subject: [PATCH] Fixed variable name mismatch with gcc code. --- client/hostinfo_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/hostinfo_win.cpp b/client/hostinfo_win.cpp index 220150e1b8..195e9634ee 100644 --- a/client/hostinfo_win.cpp +++ b/client/hostinfo_win.cpp @@ -670,7 +670,7 @@ int get_cpuid(unsigned int info_type, unsigned int& a, unsigned int& b, unsigned #elif defined(__GNUC__) // GCC compiler - __asm__ __volatile__ ("cpuid": "=a" (ax), "=b" (bx), "=c" (cx), "=d" (dx) : "a" (info_type)); + __asm__ __volatile__ ("cpuid": "=a" (a), "=b" (b), "=c" (c), "=d" (d) : "a" (info_type)); return 0; #else