From 61b7791486fb7793bb5b96f4103161e702239e19 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 17 Apr 2009 19:11:31 +0000 Subject: fix building on platforms which have no atomic operations support, the bug was introduced in r2564 --- src/core/ngx_log.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/ngx_log.c') diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index f1718f185..8c266b77d 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -184,9 +184,9 @@ ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...) void -ngx_log_abort(ngx_err_t err, const char *text) +ngx_log_abort(ngx_err_t err, const char *text, void *param) { - ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, err, text); + ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, err, text, param); } -- cgit