diff src/core/ngx_log.c @ 2864:967ad993a4f8 stable-0.6

r2719 merge: fix building on platforms which have no atomic operations support, the bug was introduced in r2653 (r2564 in trunk)
author Igor Sysoev <igor@sysoev.ru>
date Mon, 18 May 2009 16:05:02 +0000
parents 2682d042328d
children
line wrap: on
line diff
--- 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_e
 
 
 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);
 }