From 0ad17c09032bdfbc67cd1239b43107edc9d55a52 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Mon, 26 Aug 2002 15:18:19 +0000 Subject: nginx-0.0.1-2002-08-26-19:18:19 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 e059e94f6..1fd058b9f 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_ALERT, log, ngx_errno, - "ngx_alloc: malloc() %d bytes failed", size); + ngx_log_error(NGX_LOG_EMERG, log, ngx_errno, + "malloc() %d bytes failed", size); return p; } -- cgit