comctl32: Remove unneeded address-of operator from function name.

oldstable
Andrew Talbot 2011-08-29 22:36:10 +01:00 committed by Alexandre Julliard
parent 8b14f3f542
commit 92c408cd66
1 changed files with 1 additions and 1 deletions

View File

@ -2594,7 +2594,7 @@ static INT LISTVIEW_MapIdToIndex(const LISTVIEW_INFO *infoPtr, UINT iID)
if (infoPtr->nItemCount == 0) return -1;
ID.id = iID;
index = DPA_Search(infoPtr->hdpaItemIds, &ID, -1, &MapIdSearchCompare, 0, DPAS_SORTED);
index = DPA_Search(infoPtr->hdpaItemIds, &ID, -1, MapIdSearchCompare, 0, DPAS_SORTED);
if (index != -1)
{