aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/print_dlg.c
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 /gtk/print_dlg.c
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 'gtk/print_dlg.c')
-rw-r--r--gtk/print_dlg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/print_dlg.c b/gtk/print_dlg.c
index 632069124e..63cb3ee3c4 100644
--- a/gtk/print_dlg.c
+++ b/gtk/print_dlg.c
@@ -1,7 +1,7 @@
/* print_dlg.c
* Dialog boxes for printing
*
- * $Id: print_dlg.c,v 1.30 2002/03/05 11:55:59 guy Exp $
+ * $Id: print_dlg.c,v 1.31 2002/03/31 20:57:02 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -631,7 +631,7 @@ file_print_packet_cmd_cb(GtkWidget *widget _U_, gpointer data _U_) {
print_args.print_hex = FALSE;
print_args.expand_all = TRUE;
print_args.suppress_unmarked = FALSE;
- proto_tree_print(TRUE, &print_args, (GNode*) cfile.edt->tree,
+ proto_tree_print(&print_args, (GNode*) cfile.edt->tree,
cfile.current_frame, fh);
print_finale(fh, prefs.pr_format);
close_print_dest(print_args.to_file, fh);