diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-06-22 21:51:55 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-06-22 21:51:55 +0000 |
commit | fe40fa191e2e2b9e6c4dff2ac52bf5db541a9c46 (patch) | |
tree | f3285e99fe2443c8a3ea38253f67f07f7caa5583 /gtk/about_dlg.c | |
parent | 56833f4288adf41377e518a059248c3eeb9dc825 (diff) | |
download | wireshark-fe40fa191e2e2b9e6c4dff2ac52bf5db541a9c46.tar.gz wireshark-fe40fa191e2e2b9e6c4dff2ac52bf5db541a9c46.tar.bz2 wireshark-fe40fa191e2e2b9e6c4dff2ac52bf5db541a9c46.zip |
Mark some unused variables as such.
svn path=/trunk/; revision=11215
Diffstat (limited to 'gtk/about_dlg.c')
-rw-r--r-- | gtk/about_dlg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/about_dlg.c b/gtk/about_dlg.c index d70249419c..bdaea2b2ce 100644 --- a/gtk/about_dlg.c +++ b/gtk/about_dlg.c @@ -1,6 +1,6 @@ /* about_dlg.c * - * $Id: about_dlg.c,v 1.15 2004/06/22 16:28:27 ulfl Exp $ + * $Id: about_dlg.c,v 1.16 2004/06/22 21:51:55 guy Exp $ * * Ulf Lamping <ulf.lamping@web.de> * @@ -288,7 +288,7 @@ about_ethereal_destroy_cb(GtkWidget *win _U_, gpointer user_data _U_) void -url_onlinepage_cb( GtkWidget *widget, gpointer data, onlinepage_action_e action) +url_onlinepage_cb( GtkWidget *widget _U_, gpointer data _U_, onlinepage_action_e action) { switch(action) { case(ONLINEPAGE_HOME): @@ -342,7 +342,7 @@ browser_open_program_file(gchar *filename) } void -url_localpage_cb( GtkWidget *w _U_, gpointer data, localpage_action_e action) +url_localpage_cb( GtkWidget *w _U_, gpointer data _U_, localpage_action_e action) { switch(action) { case(LOCALPAGE_MAN_ETHEREAL): |