Filter chains helper: minor cleanups
authorMarc Fournier <marc.fournier@camptocamp.com>
Tue, 26 May 2015 13:41:47 +0000 (15:41 +0200)
committerMarc Fournier <marc.fournier@camptocamp.com>
Tue, 26 May 2015 13:41:47 +0000 (15:41 +0200)
This is a couple of trivial followups to 809a8973.

src/daemon/filter_chain.c
src/daemon/plugin.c
src/daemon/plugin.h

index 32ce736..0fd4a73 100644 (file)
@@ -766,7 +766,7 @@ static int fc_bit_write_invoke (const data_set_t *ds, /* {{{ */
             "the `%s' plugin failed with status %i.",
             plugin_list[i].plugin, status);
 
-       plugin_log_available_writers ();
+        plugin_log_available_writers ();
       }
       else
       {
index b69e65b..3d36445 100644 (file)
@@ -1448,9 +1448,9 @@ int plugin_unregister_read (const char *name) /* {{{ */
        return (0);
 } /* }}} int plugin_unregister_read */
 
-void plugin_log_available_writers ()
+void plugin_log_available_writers (void)
 {
-       log_list_callbacks (&list_write, "Available writers:");
+       log_list_callbacks (&list_write, "Available write targets:");
 }
 
 static int compare_read_func_group (llentry_t *e, void *ud) /* {{{ */
index beeb576..70a2232 100644 (file)
@@ -330,7 +330,7 @@ int plugin_unregister_notification (const char *name);
  *  This function can be called to output a list of _all_ registered
  *  writers to the logfacility.
  *  Since some writers dynamically build their name it can be hard for
- *  the configuring person to know it. This function will fill this gap. 
+ *  the configuring person to know it. This function will fill this gap.
  */
 void plugin_log_available_writers ();