winmm: Remove unneeded address-of operator from function name

Andrew Talbot andrew.talbot at talbotville.com
Sat Mar 30 17:42:00 CDT 2013


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

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);
 




More information about the wine-patches mailing list