comctl32: Fix signedness of two variables.

This commit is contained in:
Gerald Pfeifer 2008-07-05 13:52:32 +02:00 committed by Alexandre Julliard
parent abe87675a8
commit 0f35109915
1 changed files with 2 additions and 1 deletions

View File

@ -146,7 +146,8 @@ notify_with_scroll (const TRACKBAR_INFO *infoPtr, UINT code)
static void TRACKBAR_RecalculateTics (TRACKBAR_INFO *infoPtr)
{
int i, tic, nrTics;
int tic;
unsigned nrTics, i;
if (infoPtr->uTicFreq && infoPtr->lRangeMax >= infoPtr->lRangeMin)
nrTics=(infoPtr->lRangeMax - infoPtr->lRangeMin)/infoPtr->uTicFreq;