winmm: Remove unneeded address-of operator from function name.
authorAndrew Talbot <andrew.talbot@talbotville.com>
Sat, 30 Mar 2013 22:42:00 +0000 (22:42 +0000)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 1 Apr 2013 10:19:21 +0000 (12:19 +0200)
dlls/winmm/waveform.c

index de081e9..76d624a 100644 (file)
@@ -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);