diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-11-15 09:03:08 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-11-15 09:03:08 +0000 |
commit | b13029c57c3011c6df10566278eb4d5255e592d2 (patch) | |
tree | fcf775e6f1743487febd5fcafd0682f4250a118e /src/os/win32/ngx_alloc.c | |
parent | fc514f1d073c9b9cb0961749812be4cffcd80abe (diff) | |
download | nginx-b13029c57c3011c6df10566278eb4d5255e592d2.tar.gz nginx-b13029c57c3011c6df10566278eb4d5255e592d2.zip |
update allocation error messages
Diffstat (limited to 'src/os/win32/ngx_alloc.c')
-rw-r--r-- | src/os/win32/ngx_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_alloc.c b/src/os/win32/ngx_alloc.c index d04c3f37c..e09b3a301 100644 --- a/src/os/win32/ngx_alloc.c +++ b/src/os/win32/ngx_alloc.c @@ -20,7 +20,7 @@ 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, - "malloc() %uz bytes failed", size); + "malloc(%uz) failed", size); } ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, log, 0, "malloc: %p:%uz", p, size); |