hlink: Remove unneeded address-of operators from function names

Andrew Talbot andrew.talbot at talbotville.com
Mon May 5 06:49:54 CDT 2008


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

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