diff options
author | Igor Sysoev <igor@sysoev.ru> | 2002-08-22 15:24:03 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2002-08-22 15:24:03 +0000 |
commit | 4e5e1171085a2235863baf7dddbd1477f817ae58 (patch) | |
tree | 0cf794ff6076a6b545384ff46fa56ed85ac49b37 /src/core/ngx_alloc.c | |
parent | 2b54238a5f2edcca568c0676a779ef79ba152c91 (diff) | |
download | nginx-4e5e1171085a2235863baf7dddbd1477f817ae58.tar.gz nginx-4e5e1171085a2235863baf7dddbd1477f817ae58.zip |
nginx-0.0.1-2002-08-22-19:24:03 import
Diffstat (limited to 'src/core/ngx_alloc.c')
-rw-r--r-- | src/core/ngx_alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |