From 0cf1e027edfbefd7703b47d1ceffdd97f0e88cd5 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Thu, 21 Aug 2014 22:17:23 -0700 Subject: [PATCH] plugin: Added missing argument to sdb_log() call. --- src/core/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.30.2