From Joerg Mayer: mark function arguments as unused.
authorGuy Harris <guy@alum.mit.edu>
Sun, 31 Mar 2002 20:39:08 +0000 (20:39 -0000)
committerGuy Harris <guy@alum.mit.edu>
Sun, 31 Mar 2002 20:39:08 +0000 (20:39 -0000)
svn path=/trunk/; revision=5049

editcap.c
proto_hier_stats.c

index 1ba14c39597f0f88650d31c68efbb40dd108a413..16fa5488b4539ac239e5fdfefb40863552804c2a 100644 (file)
--- a/editcap.c
+++ b/editcap.c
@@ -1,7 +1,7 @@
 /* Edit capture files.  We can delete records, adjust timestamps, or
  * simply convert from one format to another format.
  *
- * $Id: editcap.c,v 1.21 2002/03/14 04:32:35 gram Exp $
+ * $Id: editcap.c,v 1.22 2002/03/31 20:39:08 guy Exp $
  *
  * Originally written by Richard Sharpe.
  * Improved by Guy Harris.
@@ -137,7 +137,7 @@ typedef struct {
  */
 
 static void
-edit_callback(u_char *user, const struct wtap_pkthdr *phdr, long offset,
+edit_callback(u_char *user, const struct wtap_pkthdr *phdr, long offset _U_,
     union wtap_pseudo_header *pseudo_header, const u_char *buf) 
 {
   callback_arg *argp = (callback_arg *)user;
index 4153f884d893ea17f5af31c0df78f730705e8fc4..28bc8e6b9f7fd8ab24ac1e850110b6ab821240d4 100644 (file)
@@ -1,7 +1,7 @@
 /* proto_hier_stats.c
  * Routines for calculating statistics based on protocol.
  *
- * $Id: proto_hier_stats.c,v 1.12 2002/03/05 05:58:28 guy Exp $
+ * $Id: proto_hier_stats.c,v 1.13 2002/03/31 20:37:48 guy Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@ethereal.com>
@@ -239,7 +239,7 @@ ph_stats_new(void)
 }
 
 static gboolean
-stat_node_free(GNode *node, gpointer data)
+stat_node_free(GNode *node, gpointer data _U_)
 {
        ph_stats_node_t *stats = node->data;