Code

Fix compiler warnings.
authorFlorian Forster <ff@octo.it>
Tue, 15 Jun 2010 11:24:00 +0000 (13:24 +0200)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Tue, 15 Jun 2010 11:24:00 +0000 (13:24 +0200)
action_list_graphs.c
filesystem.c
filesystem.h
graph.c
graph_config.c
graph_ident.c
graph_instance.c
graph_list.c
graph_list.h

index fc4ec14e31501227277f76da8be362300ec7e9a3..4ec9a30948d7c9f9e87644d20b3ac3c4de9a58c1 100644 (file)
@@ -4,6 +4,7 @@
 #include <errno.h>
 
 #include "action_list_graphs.h"
+#include "graph.h"
 #include "graph_list.h"
 #include "utils_params.h"
 
@@ -81,7 +82,7 @@ static int print_graph_html (graph_config_t *cfg, /* {{{ */
   char buffer[1024];
 
   memset (buffer, 0, sizeof (buffer));
-  gl_graph_get_title (cfg, buffer, sizeof (buffer));
+  graph_get_title (cfg, buffer, sizeof (buffer));
 
   printf ("<li>%s\n<ul>\n", buffer);
   gl_graph_instance_get_all (cfg, print_graph_inst_html, /* user_data = */ NULL);
index ba57249b1ea09408b151dd94cb1d2cc4788c2e9a..a5eeb81f73771fe4c63979e5bf574b3bad5a74fa 100644 (file)
@@ -8,8 +8,6 @@
 #include <sys/stat.h>
 #include <dirent.h>
 
-#define DATA_DIR "/var/lib/collectd/rrd"
-
 #include "filesystem.h"
 
 struct fs_scan_dir_data_s /* {{{ */
@@ -92,7 +90,7 @@ static int foreach_dir (const char *dir, /* {{{ */
 {
   DIR *dh;
   struct dirent *entry;
-  int status;
+  int status = 0;
 
   if (callback == NULL)
     return (EINVAL);
index 49798a00c7b485494f669d6a33136c343455c4ee..9569bc3d337b0d1abf2674762efd34542c8621b3 100644 (file)
@@ -3,6 +3,8 @@
 
 #include "graph_ident.h"
 
+#define DATA_DIR "/var/lib/collectd/rrd"
+
 typedef int (*fs_ident_cb_t) (const graph_ident_t *ident, void *user_data);
 
 int fs_scan (fs_ident_cb_t callback, void *user_data);
diff --git a/graph.c b/graph.c
index c09248297c3bfbbad7ae381590a256287133e37f..79964f3b5b25ffb7d866fc53ea269699a6432ed5 100644 (file)
--- a/graph.c
+++ b/graph.c
@@ -183,7 +183,7 @@ int graph_add_file (graph_config_t *cfg, const graph_ident_t *file) /* {{{ */
   return (inst_add_file (inst, file));
 } /* }}} int graph_add_file */
 
-int gl_graph_get_title (graph_config_t *cfg, /* {{{ */
+int graph_get_title (graph_config_t *cfg, /* {{{ */
     char *buffer, size_t buffer_size)
 {
   if ((cfg == NULL) || (buffer == NULL) || (buffer_size < 1))
@@ -199,7 +199,7 @@ int gl_graph_get_title (graph_config_t *cfg, /* {{{ */
   buffer[buffer_size - 1] = 0;
 
   return (0);
-} /* }}} int gl_graph_get_title */
+} /* }}} int graph_get_title */
 
 graph_ident_t *graph_get_selector (graph_config_t *cfg) /* {{{ */
 {
index 1b612c6a3b14db16e5e1062ee014e5125d50308d..94dd440edc75d25a9242b6cfc4d0f511ecee2549 100644 (file)
@@ -47,7 +47,7 @@ static int internal_read_config (void) /* {{{ */
 
   oconfig_free (ci);
 
-  graph_config_submit ();
+  gl_config_submit ();
 
   return (0);
 } /* }}} int internal_read_config */
index fb6e206f46c01eb8856cfad5c9fbba76ce634064..454cc1a1cd9141e3dee50f715663416eff2347e2 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "graph_ident.h"
 #include "common.h"
+#include "filesystem.h"
 
 #define IS_ANY(str) (((str) != NULL) && (strcasecmp (ANY_TOKEN, (str)) == 0))
 #define IS_ALL(str) (((str) != NULL) && (strcasecmp (ALL_TOKEN, (str)) == 0))
index 25a24a41dbd701a8772d4a682024053f0be2cd49..11629a5ade4d761d7827104bb58430a6c4d44299 100644 (file)
@@ -4,6 +4,7 @@
 
 #include "graph_instance.h"
 #include "graph_ident.h"
+#include "graph_list.h"
 #include "common.h"
 #include "utils_params.h"
 
index f59508d963ce775ac66d6b02a9adf9da5e235435..965fcbac4f6caad5913b9a0097dd2937ec773ffb 100644 (file)
@@ -128,7 +128,7 @@ int gl_add_graph (graph_config_t *cfg) /* {{{ */
   return (gl_add_graph_internal (cfg, &gl_staging, &gl_staging_num));
 } /* }}} int gl_add_graph */
 
-int graph_config_submit (void) /* {{{ */
+int gl_config_submit (void) /* {{{ */
 {
   graph_config_t **old;
   size_t old_num;
index 8f21e86d8e7b037503b2a597966a2df9a65e0c0d..c17d6fc08c17c220c2e911eeb85f1e5cd0ff75f5 100644 (file)
@@ -17,6 +17,8 @@ typedef int (*gl_inst_callback) (graph_config_t *cfg,
  */
 int gl_add_graph (graph_config_t *cfg);
 
+int gl_config_submit (void);
+
 int gl_graph_get_all (gl_cfg_callback callback,
     void *user_data);