Commit ce41fc04 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

mlang: Avoid signed-unsigned integer comparisons.

parent b6717dd3
...@@ -3008,7 +3008,7 @@ static HRESULT WINAPI fnIMultiLanguage3_ValidateCodePageEx( ...@@ -3008,7 +3008,7 @@ static HRESULT WINAPI fnIMultiLanguage3_ValidateCodePageEx(
HWND hwnd, HWND hwnd,
DWORD dwfIODControl) DWORD dwfIODControl)
{ {
int i; unsigned int i;
MLang_impl *This = impl_from_IMultiLanguage3( iface ); MLang_impl *This = impl_from_IMultiLanguage3( iface );
TRACE("%p %u %p %08x\n", This, uiCodePage, hwnd, dwfIODControl); TRACE("%p %u %p %08x\n", This, uiCodePage, hwnd, dwfIODControl);
...@@ -3020,7 +3020,7 @@ static HRESULT WINAPI fnIMultiLanguage3_ValidateCodePageEx( ...@@ -3020,7 +3020,7 @@ static HRESULT WINAPI fnIMultiLanguage3_ValidateCodePageEx(
/* check for mlang supported code pages */ /* check for mlang supported code pages */
for (i = 0; i < sizeof(mlang_data)/sizeof(mlang_data[0]); i++) for (i = 0; i < sizeof(mlang_data)/sizeof(mlang_data[0]); i++)
{ {
int n; UINT n;
for (n = 0; n < mlang_data[i].number_of_cp; n++) for (n = 0; n < mlang_data[i].number_of_cp; n++)
{ {
if (mlang_data[i].mime_cp_info[n].cp == uiCodePage) if (mlang_data[i].mime_cp_info[n].cp == uiCodePage)
...@@ -3139,7 +3139,7 @@ static HRESULT WINAPI fnIMLangFontLink2_GetCharCodePages( IMLangFontLink2* iface ...@@ -3139,7 +3139,7 @@ static HRESULT WINAPI fnIMLangFontLink2_GetCharCodePages( IMLangFontLink2* iface
WCHAR ch_src, DWORD *ret_codepages) WCHAR ch_src, DWORD *ret_codepages)
{ {
MLang_impl *This = impl_from_IMLangFontLink2(iface); MLang_impl *This = impl_from_IMLangFontLink2(iface);
int i; unsigned int i;
TRACE("(%p)->(%s %p)\n", This, debugstr_wn(&ch_src, 1), ret_codepages); TRACE("(%p)->(%s %p)\n", This, debugstr_wn(&ch_src, 1), ret_codepages);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment