diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-05-21 00:18:46 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-05-21 00:18:46 +0000 |
commit | 6e014216a9070dc1f842edbaf52a292d6f05eba6 (patch) | |
tree | f58262d922409ead2fb21b3d5fea928ce49042e0 /gtk/proto_draw.c | |
parent | 83dfc924cd76bf585cf009c8f626fdc7d902977a (diff) | |
download | wireshark-6e014216a9070dc1f842edbaf52a292d6f05eba6.tar.gz wireshark-6e014216a9070dc1f842edbaf52a292d6f05eba6.tar.bz2 wireshark-6e014216a9070dc1f842edbaf52a292d6f05eba6.zip |
Tag unused parameters with _U_ to squelch GCC compiler warnings (they're
GTK+ callbacks so we don't get to change the calling sequence).
svn path=/trunk/; revision=10934
Diffstat (limited to 'gtk/proto_draw.c')
-rw-r--r-- | gtk/proto_draw.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/proto_draw.c b/gtk/proto_draw.c index e9536b1d52..f7aa6597dd 100644 --- a/gtk/proto_draw.c +++ b/gtk/proto_draw.c @@ -1,7 +1,7 @@ /* proto_draw.c * Routines for GTK+ packet display * - * $Id: proto_draw.c,v 1.98 2004/05/18 00:05:12 ulfl Exp $ + * $Id: proto_draw.c,v 1.99 2004/05/21 00:18:46 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1605,11 +1605,11 @@ set_ptree_font_all(PangoFontDescription *font) #if GTK_MAJOR_VERSION >= 2 -void tree_cell_renderer(GtkTreeViewColumn *tree_column, +void tree_cell_renderer(GtkTreeViewColumn *tree_column _U_, GtkCellRenderer *cell, GtkTreeModel *tree_model, GtkTreeIter *iter, - gpointer data) + gpointer data _U_) { field_info *fi; |