]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Add missing comma in some 'apr_apr_psprintf()' call if APR_HAS_THREADS is not defined
authorChristophe Jaillet <jailletc36@apache.org>
Sun, 27 Sep 2020 09:00:35 +0000 (09:00 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Sun, 27 Sep 2020 09:00:35 +0000 (09:00 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1882060 13f79535-47bb-0310-9956-ffa450edef68

modules/lua/mod_lua.c

index b70ecd323e52b64ddd208a47afbeec470765a39e..d0806c9ad6d3880e815ffe9451ba0d6998acaf1f 100644 (file)
@@ -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;