widl [2/7]: Remove unused parameter in write_ip_tfs.

Dan Hipschman dsh at linux.ucla.edu
Wed Sep 13 18:29:54 CDT 2006


ChangeLog:
* Remove unused function paramter (and compliler warnings about it).
---
 tools/widl/typegen.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c
index 84a2958..3cc2f61 100644
--- a/tools/widl/typegen.c
+++ b/tools/widl/typegen.c
@@ -1271,7 +1271,7 @@ static size_t write_union_tfs(FILE *file
     return *typeformat_offset;
 }
 
-static size_t write_ip_tfs(FILE *file, const attr_t *attrs, const type_t *type,
+static size_t write_ip_tfs(FILE *file, const attr_t *attrs,
                            const char *name, unsigned int *typeformat_offset)
 {
     size_t i;
@@ -1401,7 +1401,7 @@ static size_t write_typeformatstring_var
 
             if (base->type == RPC_FC_IP)
             {
-                return write_ip_tfs(file, base->attrs, base, base->name, typeformat_offset);
+                return write_ip_tfs(file, base->attrs, base->name, typeformat_offset);
             }
 
             /* special case for pointers to base types */



More information about the wine-patches mailing list