comparison src/core/ngx_slab.c @ 6480:f01ab2dbcfdc

Fixed logging.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 31 Mar 2016 02:33:57 +0300
parents 2cd019520210
children ea76a3aa18ae
comparison
equal deleted inserted replaced
6479:dc92298b1852 6480:f01ab2dbcfdc
390 390
391 p = 0; 391 p = 0;
392 392
393 done: 393 done:
394 394
395 ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0, "slab alloc: %p", p); 395 ngx_log_debug1(NGX_LOG_DEBUG_ALLOC, ngx_cycle->log, 0,
396 "slab alloc: %p", (void *) p);
396 397
397 return (void *) p; 398 return (void *) p;
398 } 399 }
399 400
400 401