From de6145f747e38a5da455ccb8a84ebfc1cd2f517f Mon Sep 17 00:00:00 2001 From: Thierry Fournier Date: Sun, 29 Nov 2020 00:55:53 +0100 Subject: [PATCH] BUG/MINOR: lua: missing "\n" in error message Just replace ".n" by "\n" This could be backported until 1.9, but it is not so important. --- src/hlua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hlua.c b/src/hlua.c index f497892be4..1ecf0c1651 100644 --- a/src/hlua.c +++ b/src/hlua.c @@ -8004,7 +8004,7 @@ static int hlua_load(char **args, int section_type, struct proxy *curpx, lua_pop(gL.T, 1); return -1; case LUA_ERRMEM: - memprintf(err, "Lua out of memory error.n"); + memprintf(err, "Lua out of memory error\n"); return -1; case LUA_ERRERR: memprintf(err, "Lua message handler error: %s\n", lua_tostring(gL.T, -1)); -- 2.47.3