From: Florian Forster Date: Mon, 16 Mar 2009 14:01:39 +0000 (+0100) Subject: src/plugin.c: Remove an unused variable. X-Git-Tag: collectd-4.7.0~115 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=f6c23c86d0a7d34d2a9a0819b01638c164244378 src/plugin.c: Remove an unused variable. --- diff --git a/src/plugin.c b/src/plugin.c index 14126cd5..8fdd7bba 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -931,7 +931,6 @@ void plugin_read_all (void) /* Read function called when the `-T' command line argument is given. */ int plugin_read_all_once (void) { - llentry_t *le; int status; int return_status = 0; @@ -967,7 +966,7 @@ int plugin_read_all_once (void) if (status != 0) { NOTICE ("read-function of plugin `%s' failed.", - le->key); + rf->rf_name); return_status = -1; }