fix building without --with-debug, introduced in r3328

This commit is contained in:
Igor Sysoev 2009-11-16 16:00:52 +00:00
parent 57acd7b421
commit 93da565962

View File

@ -61,7 +61,7 @@ ngx_memalign(size_t alignment, size_t size, ngx_log_t *log)
p = NULL;
}
ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, log, 0,
ngx_log_debug3(NGX_LOG_DEBUG_ALLOC, log, 0,
"posix_memalign: %p:%uz @%uz", p, size, alignment);
return p;
@ -80,7 +80,7 @@ ngx_memalign(size_t alignment, size_t size, ngx_log_t *log)
"memalign(%uz, %uz) failed", alignment, size);
}
ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, log, 0,
ngx_log_debug3(NGX_LOG_DEBUG_ALLOC, log, 0,
"memalign: %p:%uz @%uz", p, size, alignment);
return p;