aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stats_tree.h
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2005-07-23 11:41:25 +0000
committerJörg Mayer <jmayer@loplof.de>2005-07-23 11:41:25 +0000
commit30a855786822f15108e3a9d4dbd5579cd656abba (patch)
tree88cde02c2a8b79acb9a58e94d44b2cc686e12e9e /epan/stats_tree.h
parentcb4ac62893d38d74efc89f5d5c90c7451dc421a4 (diff)
More 'char*' -> 'const char*' changes to fix warnings.
svn path=/trunk/; revision=15015
Diffstat (limited to 'epan/stats_tree.h')
-rw-r--r--epan/stats_tree.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/stats_tree.h b/epan/stats_tree.h
index 872450cb70..d3d81e0179 100644
--- a/epan/stats_tree.h
+++ b/epan/stats_tree.h
@@ -55,9 +55,9 @@ typedef void (*stat_tree_cleanup_cb)(stats_tree*);
* packet: per packet callback
* init: tree initialization callback
*/
-extern void stats_tree_register(guint8* tapname,
- guint8* abbr,
- guint8* name,
+extern void stats_tree_register(const guint8* tapname,
+ const guint8* abbr,
+ const guint8* name,
stat_tree_packet_cb packet,
stat_tree_init_cb init,
stat_tree_cleanup_cb cleanup);