diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-03-27 18:24:05 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-03-27 18:24:05 +0000 |
commit | 985c8afc316b6a7446b5c0d84b11f3d71fd53c78 (patch) | |
tree | 3e0dab509c8f53277fc113b423287361af8f7d2e /proto_hier_stats.c | |
parent | 1e784fc7fe0f312d89fb47103daa9b28133288c2 (diff) | |
download | wireshark-985c8afc316b6a7446b5c0d84b11f3d71fd53c78.tar.gz wireshark-985c8afc316b6a7446b5c0d84b11f3d71fd53c78.tar.bz2 wireshark-985c8afc316b6a7446b5c0d84b11f3d71fd53c78.zip |
Squelch some compiler warnings.
svn path=/trunk/; revision=32312
Diffstat (limited to 'proto_hier_stats.c')
-rw-r--r-- | proto_hier_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto_hier_stats.c b/proto_hier_stats.c index 24d019f211..75fb892472 100644 --- a/proto_hier_stats.c +++ b/proto_hier_stats.c @@ -315,7 +315,7 @@ ph_stats_new(void) static gboolean stat_node_free(GNode *node, gpointer data _U_) { - ph_stats_node_t *stats = node->data; + ph_stats_node_t *stats = (ph_stats_node_t *)node->data; if (stats) { g_free(stats); |