Missing parentheses added.

This commit is contained in:
Marcus Meissner 1998-12-10 08:21:14 +00:00 committed by Alexandre Julliard
parent 537772a6bb
commit 2643894e5d
1 changed files with 1 additions and 1 deletions

View File

@ -853,7 +853,7 @@ TREEVIEW_InsertItem32A (WND *wndPtr, WPARAM32 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(INT32));
(infoPtr->uNumPtrsAlloced>>6) * sizeof(INT32));
HeapFree (GetProcessHeap (), 0, oldItems);
HeapFree (GetProcessHeap (), 0, oldfreeList);