summaryrefslogtreecommitdiff
path: root/dtrans
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-03-08 11:44:28 +0100
committerDavid Tardon <dtardon@redhat.com>2012-03-12 08:53:35 +0100
commit55afdcce6d46e9824467999aef92ef04347cfeb1 (patch)
treeb16185b698b953584a59f4cdb298224f65020c70 /dtrans
parent7553b372efef9d73db8b3a48db1dce3e292962f3 (diff)
WaE: comparison between signed and unsigned integer expressions
Diffstat (limited to 'dtrans')
-rw-r--r--dtrans/source/win32/misc/ImplHelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dtrans/source/win32/misc/ImplHelper.cxx b/dtrans/source/win32/misc/ImplHelper.cxx
index 9061e8099190..abeb028309a3 100644
--- a/dtrans/source/win32/misc/ImplHelper.cxx
+++ b/dtrans/source/win32/misc/ImplHelper.cxx
@@ -183,8 +183,8 @@ sal_Bool SAL_CALL IsOEMCP( sal_uInt32 codepage )
861, 862, 863, 864, 865, 866,
869, 874, 932, 936, 949, 950, 1361 };
- for ( sal_Int8 i = 0; i < ( SAL_N_ELEMENTS( arrOEMCP ) ); ++i )
- if ( (sal_uInt32) arrOEMCP[i] == codepage )
+ for ( size_t i = 0; i < SAL_N_ELEMENTS( arrOEMCP ); ++i )
+ if ( arrOEMCP[i] == codepage )
return sal_True;
return sal_False;