From: Christophe Jaillet Date: Sun, 27 Sep 2020 09:00:35 +0000 (+0000) Subject: Add missing comma in some 'apr_apr_psprintf()' call if APR_HAS_THREADS is not defined X-Git-Tag: 2.5.0-alpha2-ci-test-only~1200 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03b458e0e2c2695bcaf644d634516b52ad4335c3;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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;