comctl32: Sign-compare warnings fix.

This commit is contained in:
Andrew Talbot 2008-09-20 22:29:32 +01:00 committed by Alexandre Julliard
parent 4f1fabf335
commit d0e860b8a3
2 changed files with 3 additions and 3 deletions

View file

@ -136,7 +136,7 @@ static PDOC_ITEM SYSLINK_AppendDocItem (SYSLINK_INFO *infoPtr, LPCWSTR Text, UIN
{
PDOC_ITEM Item;
textlen = min(textlen, lstrlenW(Text));
textlen = min(textlen, strlenW(Text));
Item = Alloc(FIELD_OFFSET(DOC_ITEM, Text[textlen + 1]));
if(Item == NULL)
{

View file

@ -113,7 +113,7 @@ static const WNDPROC subclassProcs[NUM_SUBCLASSES] = {
*/
void THEMING_Initialize (void)
{
int i;
unsigned int i;
static const WCHAR subclassPropName[] =
{ 'C','C','3','2','T','h','e','m','i','n','g','S','u','b','C','l',0 };
static const WCHAR refDataPropName[] =
@ -161,7 +161,7 @@ void THEMING_Initialize (void)
*/
void THEMING_Uninitialize (void)
{
int i;
unsigned int i;
if (!atSubclassProp) return; /* not initialized */