From 03b458e0e2c2695bcaf644d634516b52ad4335c3 Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Sun, 27 Sep 2020 09:00:35 +0000 Subject: [PATCH] Add missing comma in some 'apr_apr_psprintf()' call if APR_HAS_THREADS is not defined git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882060 13f79535-47bb-0310-9956-ffa450edef68 --- modules/lua/mod_lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lua/mod_lua.c b/modules/lua/mod_lua.c index b70ecd323e5..d0806c9ad6d 100644 --- a/modules/lua/mod_lua.c +++ b/modules/lua/mod_lua.c @@ -1652,7 +1652,7 @@ static const char *register_lua_scope(cmd_parms *cmd, return apr_psprintf(cmd->pool, "Scope type of '%s' cannot be used because this " "server does not have threading support " - "(APR_HAS_THREADS)" + "(APR_HAS_THREADS)", scope); #endif cfg->vm_scope = AP_LUA_SCOPE_THREAD; @@ -1663,7 +1663,7 @@ static const char *register_lua_scope(cmd_parms *cmd, return apr_psprintf(cmd->pool, "Scope type of '%s' cannot be used because this " "server does not have threading support " - "(APR_HAS_THREADS)" + "(APR_HAS_THREADS)", scope); #endif cfg->vm_scope = AP_LUA_SCOPE_SERVER; -- 2.47.3