Andrew Talbot : setupapi: Remove unneeded address-of operator from array name.

Alexandre Julliard julliard at winehq.org
Mon Jul 14 05:56:55 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Fri Jul 11 21:58:21 2008 +0100

setupapi: Remove unneeded address-of operator from array name.

---

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

diff --git a/dlls/setupapi/queue.c b/dlls/setupapi/queue.c
index 3212d5a..7605bc1 100644
--- a/dlls/setupapi/queue.c
+++ b/dlls/setupapi/queue.c
@@ -183,7 +183,7 @@ UINT CALLBACK QUEUE_callback_WtoA( void *context, UINT notification,
     switch(notification)
     {
     case SPFILENOTIFY_COPYERROR:
-        param2 = (UINT_PTR)&buffer;
+        param2 = (UINT_PTR)buffer;
         /* fall through */
     case SPFILENOTIFY_STARTDELETE:
     case SPFILENOTIFY_ENDDELETE:




More information about the wine-cvs mailing list