dsound: Remove unneeded address-of operator from function name

Andrew Talbot andrew.talbot at talbotville.com
Sat Oct 8 15:15:37 CDT 2011


Changelog:
    dsound: Remove unneeded address-of operator from function name.

diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c
index 61a8228..8245612 100644
--- a/dlls/dsound/capture.c
+++ b/dlls/dsound/capture.c
@@ -1048,7 +1048,7 @@ static HRESULT DirectSoundCaptureDevice_Initialize(
     }
     IAudioClient_Release(client);
 
-    device->timerID = DSOUND_create_timer(&DSOUND_capture_timer, (DWORD_PTR)device);
+    device->timerID = DSOUND_create_timer(DSOUND_capture_timer, (DWORD_PTR)device);
 
     list_add_tail(&DSOUND_capturers, &device->entry);
 



More information about the wine-patches mailing list