diff src/core/ngx_log.c @ 2718:dbd02ee65df4

fix building on platforms which have no atomic operations support, the bug was introduced in r2564
author Igor Sysoev <igor@sysoev.ru>
date Fri, 17 Apr 2009 19:11:31 +0000
parents 367b29612a00
children ffa8e2451457
line wrap: on
line diff
--- a/src/core/ngx_log.c	Fri Apr 17 19:09:08 2009 +0000
+++ b/src/core/ngx_log.c	Fri Apr 17 19:11:31 2009 +0000
@@ -184,9 +184,9 @@
 
 
 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);
 }