diff options
author | Jeff Morriss <jeff.morriss@ulticom.com> | 2008-07-12 01:48:24 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss@ulticom.com> | 2008-07-12 01:48:24 +0000 |
commit | c50b4aec09045426bf0f1128ebcbcec89a6b99c8 (patch) | |
tree | 0d1aa7b1f115345acaa3a4d5af41e16d546b7e2d /epan/stats_tree.c | |
parent | 71c1e4faf015c565e543b78b7324b6eb6d528f07 (diff) | |
download | wireshark-c50b4aec09045426bf0f1128ebcbcec89a6b99c8.tar.gz wireshark-c50b4aec09045426bf0f1128ebcbcec89a6b99c8.tar.bz2 wireshark-c50b4aec09045426bf0f1128ebcbcec89a6b99c8.zip |
More (mostly stats tree) unsigned->signed char cleanup
svn path=/trunk/; revision=25717
Diffstat (limited to 'epan/stats_tree.c')
-rw-r--r-- | epan/stats_tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/stats_tree.c b/epan/stats_tree.c index 292cac1e9d..57747dea68 100644 --- a/epan/stats_tree.c +++ b/epan/stats_tree.c @@ -45,7 +45,7 @@ static GHashTable *registry = NULL; /* writes into the buffers pointed by value, rate and percent the string representations of a node*/ extern void -stats_tree_get_strs_from_node(const stat_node *node, guint8 *value, guint8 *rate, guint8 *percent) +stats_tree_get_strs_from_node(const stat_node *node, gchar *value, gchar *rate, gchar *percent) { float f; |