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

Alexandre Julliard julliard at winehq.org
Mon Mar 4 13:23:37 CST 2013


Module: wine
Branch: master
Commit: edea85dea684a8440dd758dabc24fe9722ac7cb3
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=edea85dea684a8440dd758dabc24fe9722ac7cb3

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Mar  2 15:37:44 2013 +0000

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

---

 dlls/mscoree/metahost.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

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-cvs mailing list