aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_table.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-14 10:28:20 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-14 10:28:20 +0000
commit4f5d2ddcda71120e2a15cb12cf07df0336bab632 (patch)
tree81d02fe8c86c654048e3c5d18097670db5e4fc69 /gtk/endpoint_talkers_table.c
parentfbcaaa19f2439335f8a073e3bab8357c801f7431 (diff)
From Ronnie Sahlberg: fix a crash on Win32 when we resort a column in
the conversation list and then create/apply a filter from the conversation list popup. svn path=/trunk/; revision=9284
Diffstat (limited to 'gtk/endpoint_talkers_table.c')
-rw-r--r--gtk/endpoint_talkers_table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/endpoint_talkers_table.c b/gtk/endpoint_talkers_table.c
index 76530d7143..cb6380acbd 100644
--- a/gtk/endpoint_talkers_table.c
+++ b/gtk/endpoint_talkers_table.c
@@ -4,7 +4,7 @@
* endpoint_talkers_table 2003 Ronnie Sahlberg
* Helper routines common to all endpoint talkers tap.
*
- * $Id: endpoint_talkers_table.c,v 1.24 2003/12/04 00:45:37 guy Exp $
+ * $Id: endpoint_talkers_table.c,v 1.25 2003/12/14 10:28:20 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -212,7 +212,7 @@ reset_ett_table_data(endpoints_table *et)
/* remove all entries from the clist */
for(i=0;i<et->num_endpoints;i++){
- gtk_clist_remove(et->table, et->num_endpoints-1-i);
+ gtk_clist_remove(et->table, et->num_endpoints-i);
}
/* delete all endpoints */