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

This commit is contained in:
Andrew Talbot 2008-07-09 20:37:01 +01:00 committed by Alexandre Julliard
parent 3a7d43c55a
commit 4110e61f37
1 changed files with 1 additions and 1 deletions

View File

@ -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
{