Dan Hipschman : widl: Remove unused parameter in write_ip_tfs.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Sep 14 10:10:12 CDT 2006


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

Author: Dan Hipschman <dsh at linux.ucla.edu>
Date:   Wed Sep 13 16:29:54 2006 -0700

widl: Remove unused parameter in write_ip_tfs.

---

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