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

Alexandre Julliard julliard at winehq.org
Tue Aug 30 12:48:35 CDT 2011


Module: wine
Branch: master
Commit: 92c408cd66bebfd08b7ada328545090d1d916975
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=92c408cd66bebfd08b7ada328545090d1d916975

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Aug 29 22:36:10 2011 +0100

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

---

 dlls/comctl32/listview.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list