From 4e5e1171085a2235863baf7dddbd1477f817ae58 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Thu, 22 Aug 2002 15:24:03 +0000 Subject: nginx-0.0.1-2002-08-22-19:24:03 import --- src/core/ngx_alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/ngx_alloc.c') diff --git a/src/core/ngx_alloc.c b/src/core/ngx_alloc.c index 61ecabc4e..e059e94f6 100644 --- a/src/core/ngx_alloc.c +++ b/src/core/ngx_alloc.c @@ -12,8 +12,8 @@ void *ngx_alloc(size_t size, ngx_log_t *log) p = malloc(size); if (p == NULL) - ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, - "ngx_alloc: malloc %d bytes failed", size); + ngx_log_error(NGX_LOG_ALERT, log, ngx_errno, + "ngx_alloc: malloc() %d bytes failed", size); return p; } -- cgit