mscoree: Remove unneeded address-of operator from function name

Andrew Talbot andrew.talbot at talbotville.com
Sat Mar 2 09:37:44 CST 2013


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

diff --git a/dlls/mscoree/metahost.c b/dlls/mscoree/metahost.c
index 6906075..fe529fd 100644
--- a/dlls/mscoree/metahost.c
+++ b/dlls/mscoree/metahost.c
@@ -318,7 +318,7 @@ void unload_all_runtimes(void)
     /* If the only references to mscoree are through dll's that were loaded by
      * Mono, shutting down the Mono runtime will free mscoree, so take a
      * reference to prevent that from happening. */
-    GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, (const WCHAR *)&unload_all_runtimes, &handle);
+    GetModuleHandleExW(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, (const WCHAR *)unload_all_runtimes, &handle);
 
     for (i=0; i<NUM_ABI_VERSIONS; i++)
     {




More information about the wine-patches mailing list