Module: wine Branch: master Commit: 11ebf851b2e9fad063ab37e4a94c39ea931a644b URL: http://source.winehq.org/git/wine.git/?a=commit;h=11ebf851b2e9fad063ab37e4a9... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Sat Mar 30 22:42:00 2013 +0000 winmm: Remove unneeded address-of operator from function name. --- dlls/winmm/waveform.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/winmm/waveform.c b/dlls/winmm/waveform.c index de081e9..76d624a 100644 --- a/dlls/winmm/waveform.c +++ b/dlls/winmm/waveform.c @@ -2546,7 +2546,7 @@ static BOOL WINMM_StartDevicesThread(void) /* The devices thread holds a reference to the winmm module * to prevent it from unloading while it's running. */ GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, - (const WCHAR *)&WINMM_StartDevicesThread, &g_devthread_module); + (const WCHAR *)WINMM_StartDevicesThread, &g_devthread_module); events[0] = CreateEventW(NULL, FALSE, FALSE, NULL);