aboutsummaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-25 14:07:45 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-11-25 14:07:45 +0000
commit9d88e58e5102d65a42d1f5ff4cc7fa9c3536a3dc (patch)
tree60505c1df159a4fc2ae2c8049dbf215cecec99f3 /print.c
parent04d07e6578c25ac1c4488fb7f2d246866718a8a9 (diff)
remove another slow GMemChunk from ethereal making ethereal a little bit faster
svn path=/trunk/; revision=9085
Diffstat (limited to 'print.c')
-rw-r--r--print.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/print.c b/print.c
index 5b222e51a2..76d7f1bc5d 100644
--- a/print.c
+++ b/print.c
@@ -1,7 +1,7 @@
/* print.c
* Routines for printing packet analysis trees.
*
- * $Id: print.c,v 1.58 2003/11/24 22:11:53 guy Exp $
+ * $Id: print.c,v 1.59 2003/11/25 14:07:42 sahlberg Exp $
*
* Gilbert Ramirez <gram@alumni.rice.edu>
*
@@ -143,8 +143,8 @@ void proto_tree_print_node(GNode *node, gpointer data)
return;
/* was a free format label produced? */
- if (fi->representation) {
- label_ptr = fi->representation;
+ if (fi->rep) {
+ label_ptr = fi->rep->representation;
}
else { /* no, make a generic label */
label_ptr = label_str;