summaryrefslogtreecommitdiff
path: root/ot_stats.c
diff options
context:
space:
mode:
authorerdgeist <>2009-06-17 15:07:38 +0000
committererdgeist <>2009-06-17 15:07:38 +0000
commit877e3cfbb05f465ad18a4fdcc5d89ba59b34b629 (patch)
treed13aceaaa91904ae7cd2460bb9925ab6f5e16fef /ot_stats.c
parent65d7d9b89cc44b85d5ef8522276f04c53846acf2 (diff)
Remove unnecessary =NULL initialization of static pointers.
Diffstat (limited to 'ot_stats.c')
-rw-r--r--ot_stats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ot_stats.c b/ot_stats.c
index 2e745a4..7cbd1ce 100644
--- a/ot_stats.c
+++ b/ot_stats.c
@@ -82,7 +82,7 @@ union stats_network_node {
82}; 82};
83 83
84#ifdef WANT_LOG_NETWORKS 84#ifdef WANT_LOG_NETWORKS
85static stats_network_node *stats_network_counters_root = NULL; 85static stats_network_node *stats_network_counters_root;
86#endif 86#endif
87 87
88static int stat_increase_network_count( stats_network_node **node, int depth, uintptr_t ip ) { 88static int stat_increase_network_count( stats_network_node **node, int depth, uintptr_t ip ) {