From: Sebastian Harl Date: Fri, 22 Aug 2014 05:17:23 +0000 (-0700) Subject: plugin: Added missing argument to sdb_log() call. X-Git-Tag: sysdb-0.4.0~11 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=0cf1e027edfbefd7703b47d1ceffdd97f0e88cd5 plugin: Added missing argument to sdb_log() call. --- diff --git a/src/core/plugin.c b/src/core/plugin.c index d4bf1bd..79df55e 100644 --- a/src/core/plugin.c +++ b/src/core/plugin.c @@ -1226,7 +1226,7 @@ sdb_plugin_fetch_timeseries(const char *type, const char *id, plugin = SDB_PLUGIN_CB(sdb_llist_search_by_name(ts_fetcher_list, type)); if (! plugin) { sdb_log(SDB_LOG_ERR, "core: Cannot fetch time-series of type %s: " - "no such plugin loaded"); + "no such plugin loaded", type); errno = ENOENT; return NULL; }