dplayx: Remove unneeded address-of operator from array name

Andrew Talbot andrew.talbot at talbotville.com
Wed Jul 9 14:37:01 CDT 2008


Changelog:
	dplayx: Remove unneeded address-of operator from array name.

diff --git a/dlls/dplayx/dplayx_global.c b/dlls/dplayx/dplayx_global.c
index f15c65f..f70335b 100644
--- a/dlls/dplayx/dplayx_global.c
+++ b/dlls/dplayx/dplayx_global.c
@@ -128,7 +128,7 @@ LPVOID DPLAYX_PrivHeapAlloc( DWORD flags, DWORD size )
   {
     /* Set the area used */
     lpMemArea[ uBlockUsed ].used = 1;
-    lpvArea = &(lpMemArea[ uBlockUsed ].data);
+    lpvArea = lpMemArea[ uBlockUsed ].data;
   }
   else
   {



More information about the wine-patches mailing list