Andrew Talbot : hlink: Remove unneeded address-of operators from function names.

Alexandre Julliard julliard at winehq.org
Mon May 5 14:28:23 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon May  5 12:49:54 2008 +0100

hlink: Remove unneeded address-of operators from function names.

---

 dlls/hlink/hlink_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/hlink/hlink_main.c b/dlls/hlink/hlink_main.c
index 43e9e7f..213506e 100644
--- a/dlls/hlink/hlink_main.c
+++ b/dlls/hlink/hlink_main.c
@@ -481,8 +481,8 @@ static const IClassFactoryVtbl hlcfvt =
     HLinkCF_fnLockServer
 };
 
-static CFImpl HLink_cf = { &hlcfvt, &HLink_Constructor };
-static CFImpl HLinkBrowseContext_cf = { &hlcfvt, &HLinkBrowseContext_Constructor };
+static CFImpl HLink_cf = { &hlcfvt, HLink_Constructor };
+static CFImpl HLinkBrowseContext_cf = { &hlcfvt, HLinkBrowseContext_Constructor };
 
 /***********************************************************************
  *             DllGetClassObject (HLINK.@)




More information about the wine-cvs mailing list