Module: wine Branch: master Commit: d7f9d92b472281204cfa1bef6ef4a0e18803576b URL: http://source.winehq.org/git/wine.git/?a=commit;h=d7f9d92b472281204cfa1bef6e...
Author: Andrew Talbot andrew.talbot@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");