Remove two unused variables and mark a function paramter as unused

svn path=/trunk/; revision=29193
This commit is contained in:
Stephen Fisher 2009-07-25 20:13:46 +00:00
parent 90b1e0ebed
commit 53ded7dae6
2 changed files with 2 additions and 4 deletions

4
file.c
View File

@ -3396,7 +3396,7 @@ cf_goto_frame(capture_file *cf, guint fnumber)
}
gboolean
cf_goto_top_frame(capture_file *cf)
cf_goto_top_frame(capture_file *cf _U_)
{
#ifdef NEW_PACKET_LIST
/* Find and select */
@ -3429,7 +3429,7 @@ cf_goto_top_frame(capture_file *cf)
}
gboolean
cf_goto_bottom_frame(capture_file *cf)
cf_goto_bottom_frame(capture_file *cf _U_) /* cf is unused w/ NEW_PACKET_LIST */
{
#ifdef NEW_PACKET_LIST
/* Find and select */

View File

@ -201,7 +201,6 @@ new_packet_list_resize_columns_cb(GtkWidget *widget _U_, gpointer data _U_)
void
new_packet_list_next(void)
{
GtkTreeModel *model = GTK_TREE_MODEL(packetlist);
GtkTreeSelection *selection;
GtkTreeIter iter;
guint row;
@ -220,7 +219,6 @@ new_packet_list_next(void)
void
new_packet_list_prev(void)
{
GtkTreeModel *model = GTK_TREE_MODEL(packetlist);
GtkTreeSelection *selection;
GtkTreeIter iter;
guint row;