aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-03-31 20:57:02 +0000
committerGuy Harris <guy@alum.mit.edu>2002-03-31 20:57:02 +0000
commit63e8447614677ab3a296f1e273a584a6ff4025cd (patch)
tree319a16e438058737025af738c3ce71e0686fa222 /print.h
parenta412a0cec565dfdb0adcaf18fa9c52da76b4de9a (diff)
From Joerg Mayer: get rid of unused arguments, and mark those that can't
be eliminated (because the function is called through a pointer, and other functions called through the same pointer *do* use the argument) as unused. svn path=/trunk/; revision=5050
Diffstat (limited to 'print.h')
-rw-r--r--print.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.h b/print.h
index 5c769f78bd..e442688d3a 100644
--- a/print.h
+++ b/print.h
@@ -1,7 +1,7 @@
/* print.h
* Definitions for printing packet analysis trees.
*
- * $Id: print.h,v 1.25 2002/01/21 07:36:48 guy Exp $
+ * $Id: print.h,v 1.26 2002/03/31 20:56:59 guy Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -56,7 +56,7 @@ FILE *open_print_dest(int to_file, const char *dest);
void close_print_dest(int to_file, FILE *fh);
void print_preamble(FILE *fh, gint format);
void print_finale(FILE *fh, gint format);
-void proto_tree_print(gboolean print_one_packet, print_args_t *print_args,
+void proto_tree_print(print_args_t *print_args,
GNode *protocol_tree, frame_data *fd, FILE *fh);
void print_hex_data(FILE *fh, gint format, frame_data *fd);
void print_line(FILE *fh, gint format, char *line);