Module: wine Branch: master Commit: 1f1a97a9b539753664f90ef014afec3a615982d5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1f1a97a9b539753664f90ef014...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Sat Oct 8 21:15:37 2011 +0100
dsound: Remove unneeded address-of operator from function name.
---
dlls/dsound/capture.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/dsound/capture.c b/dlls/dsound/capture.c index 77dffe6..77ce7b6 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);