summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-01-22 15:11:26 +0100
committerStephan Bergmann <sbergman@redhat.com>2021-01-24 10:03:15 +0100
commit3c9f8e5d9740186aa57f9a6b8c867fcc7948353b (patch)
tree172888c38fadaab05bc0026329f5499090442932 /desktop
parent654c5272299057681d295afb76fc984b20868c7c (diff)
-Werror,-Wsign-compare (clang-cl)
Change-Id: I887d8bc4554880ca826259c8f9b30aaa3b41ec1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/109820 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop')
-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 ];