From: Pavel Rochnyack Date: Wed, 1 May 2019 13:27:01 +0000 (+0700) Subject: lua plugin: remove line feed in error message X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=108f93a532b922b2945b8471e6a8e9723a7181aa;p=collectd.git lua plugin: remove line feed in error message --- diff --git a/src/lua.c b/src/lua.c index b5d3ce54..5f8f9645 100644 --- a/src/lua.c +++ b/src/lua.c @@ -469,7 +469,7 @@ static int lua_script_load(const char *script_path) /* {{{ */ "In addition, no error message could be retrieved from the stack.", status); else - ERROR("Lua plugin: Executing script \"%s\" failed:\n%s", + ERROR("Lua plugin: Executing script \"%s\" failed: %s", script_path, errmsg); }