]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix parameter name in ap_log_rdata C99 macro def.
authorEric Covener <covener@apache.org>
Tue, 6 Oct 2015 01:37:54 +0000 (01:37 +0000)
committerEric Covener <covener@apache.org>
Tue, 6 Oct 2015 01:37:54 +0000 (01:37 +0000)
Via  PR57045

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1706942 13f79535-47bb-0310-9956-ffa450edef68

include/http_log.h

index e82389becec5537a4887d6893d7eade9c4dfefe5..29a60359a92bf974fec075a47b3d02414f4a1107 100644 (file)
@@ -634,7 +634,7 @@ AP_DECLARE(void) ap_log_rdata(const char *file, int line, int module_index,
 #ifdef AP_HAVE_C99
 /* need additional step to expand APLOG_MARK first */
 #define ap_log_rdata(...) ap_log_rdata__(__VA_ARGS__)
-#define ap_log_rdata__(file, line, mi, level, s, ...)           \
+#define ap_log_rdata__(file, line, mi, level, r, ...)           \
     do { if (APLOG_R_MODULE_IS_LEVEL(r, mi, level)) \
              ap_log_rdata_(file, line, mi, level, r, __VA_ARGS__);    \
     } while(0)