Fixed >> and * operator precedence problem.

This commit is contained in:
Marcus Meissner 1999-06-07 17:40:39 +00:00 committed by Alexandre Julliard
parent ab450aad07
commit c5ef0cedf9
1 changed files with 1 additions and 1 deletions

View File

@ -1504,7 +1504,7 @@ TREEVIEW_InsertItemA (HWND hwnd, WPARAM wParam, LPARAM lParam)
memcpy (&infoPtr->items[0], &oldItems[0],
infoPtr->uNumPtrsAlloced/2 * sizeof(TREEVIEW_ITEM));
memcpy (&infoPtr->freeList[0], &oldfreeList[0],
infoPtr->uNumPtrsAlloced>>6 * sizeof(INT));
(infoPtr->uNumPtrsAlloced>>6) * sizeof(INT));
COMCTL32_Free (oldItems);
COMCTL32_Free (oldfreeList);