Don't initialize static pointers to NULL
[collectd.git] / src / csv.c
index f5126d2..34fc223 100644 (file)
--- a/src/csv.c
+++ b/src/csv.c
@@ -33,7 +33,7 @@
 static const char *config_keys[] = {"DataDir", "StoreRates"};
 static int config_keys_num = STATIC_ARRAY_SIZE(config_keys);
 
-static char *datadir = NULL;
+static char *datadir;
 static int store_rates = 0;
 static int use_stdio = 0;