Andrew Talbot : comctl32: Remove unneeded address-of operator from function name.
Module: wine Branch: master Commit: 92c408cd66bebfd08b7ada328545090d1d916975 URL: http://source.winehq.org/git/wine.git/?a=commit;h=92c408cd66bebfd08b7ada3285... Author: Andrew Talbot <andrew.talbot(a)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) {
participants (1)
-
Alexandre Julliard