mirror of
https://github.com/nginx/nginx.git
synced 2025-02-03 20:10:42 -06:00
fix building without --with-debug, introduced in r3328
This commit is contained in:
parent
57acd7b421
commit
93da565962
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user