Commit 2643894e authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Missing parentheses added.

parent 537772a6
...@@ -853,7 +853,7 @@ TREEVIEW_InsertItem32A (WND *wndPtr, WPARAM32 wParam, LPARAM lParam) ...@@ -853,7 +853,7 @@ TREEVIEW_InsertItem32A (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
memcpy (&infoPtr->items[0], &oldItems[0], memcpy (&infoPtr->items[0], &oldItems[0],
infoPtr->uNumPtrsAlloced/2 * sizeof(TREEVIEW_ITEM)); infoPtr->uNumPtrsAlloced/2 * sizeof(TREEVIEW_ITEM));
memcpy (&infoPtr->freeList[0], &oldfreeList[0], memcpy (&infoPtr->freeList[0], &oldfreeList[0],
infoPtr->uNumPtrsAlloced>>6 * sizeof(INT32)); (infoPtr->uNumPtrsAlloced>>6) * sizeof(INT32));
HeapFree (GetProcessHeap (), 0, oldItems); HeapFree (GetProcessHeap (), 0, oldItems);
HeapFree (GetProcessHeap (), 0, oldfreeList); HeapFree (GetProcessHeap (), 0, oldfreeList);
......
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