comctl32: Remove unneeded address-of operator from function name

Andrew Talbot andrew.talbot at talbotville.com
Mon Aug 29 16:36:10 CDT 2011


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

diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c
index bcfd173..cc997c1 100644
--- a/dlls/comctl32/listview.c
+++ b/dlls/comctl32/listview.c
@@ -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)
     {



More information about the wine-patches mailing list