aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-01-28 10:37:14 +0000
committerGuy Harris <guy@alum.mit.edu>2004-01-28 10:37:14 +0000
commitd2e4e9ecc97b5b402ca0e4e6e8d74ca92e64dfc0 (patch)
tree0f8fe2577f816ba2fc105b8bb77ef3c6897d883b
parenta92d9edf0fc209b940edc09b6b2bd6e9cc64b6c3 (diff)
Fix a comment.
svn path=/trunk/; revision=9897
-rw-r--r--gtk/packet_list.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk/packet_list.c b/gtk/packet_list.c
index 71ca911e9e..4717586afb 100644
--- a/gtk/packet_list.c
+++ b/gtk/packet_list.c
@@ -1,7 +1,7 @@
/* packet_list.c
* packet list related functions 2002 Olivier Abad
*
- * $Id: packet_list.c,v 1.13 2004/01/28 10:19:36 guy Exp $
+ * $Id: packet_list.c,v 1.14 2004/01/28 10:37:14 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -95,8 +95,7 @@ typedef struct column_arrows {
GtkWidget *packet_list;
-/* GTKClist compare routine, overrides default to allow numeric comparison */
-
+/* EthClist compare routine, overrides default to allow numeric comparison */
#define COMPARE_NUM(n1, n2) (((n1) < (n2)) ? -1 : \
((n1) > (n2)) ? 1 : \