mirror of
https://github.com/nginx/nginx.git
synced 2026-08-04 06:53:10 +00:00
fix building without --with-debug, introduced in r3328
This commit is contained in:
parent
57acd7b421
commit
93da565962
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue