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

Alexandre Julliard julliard at winehq.org
Mon Dec 8 09:45:48 CST 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Sat Dec  6 23:50:03 2008 +0000

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

---

 tools/widl/proxy.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c
index 1d50fb4..53d5c9d 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-cvs mailing list