widl: Remove unneeded address-of operators from function names

Andrew Talbot andrew.talbot at talbotville.com
Sat Dec 6 17:50:03 CST 2008


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

diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c
index a994fd7..9e5bc0e 100644
--- a/tools/widl/proxy.c
+++ b/tools/widl/proxy.c
@@ -836,7 +836,7 @@ void write_proxies(const statement_list_t *stmts)
   fprintf(proxy, "    _%s_InterfaceNamesList,\n", file_id);
   if (have_baseiid) fprintf(proxy, "    _%s_BaseIIDList,\n", file_id);
   else fprintf(proxy, "    0,\n");
-  fprintf(proxy, "    &_%s_IID_Lookup,\n", file_id);
+  fprintf(proxy, "    _%s_IID_Lookup,\n", file_id);
   fprintf(proxy, "    %d,\n", count);
   fprintf(proxy, "    1,\n");
   fprintf(proxy, "    0,\n");



More information about the wine-patches mailing list