summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--desktop/source/app/crashreport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index a9f74b87e259..82300fa19ddc 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -314,7 +314,7 @@ void CrashReporter::writeSystemInfo()
// and https://en.wikipedia.org/wiki/CPUID .
int cpui[ 4 ];
__cpuid( cpui, 0x80000000 ); // Get the highest extended ID.
- int exIds = cpui[ 0 ];
+ unsigned int exIds = cpui[ 0 ];
if( exIds >= 0x80000004 )
{
int brand[ 16 ];