comparison src/core/ngx_hash.c @ 6224:ddf35e019a80

Core: fixed style in the error message.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 13 Aug 2015 16:27:13 +0300
parents f961c719fb09
children 3b6d69857de2
comparison
equal deleted inserted replaced
6223:d1f94042c29c 6224:ddf35e019a80
259 259
260 for (n = 0; n < nelts; n++) { 260 for (n = 0; n < nelts; n++) {
261 if (hinit->bucket_size < NGX_HASH_ELT_SIZE(&names[n]) + sizeof(void *)) 261 if (hinit->bucket_size < NGX_HASH_ELT_SIZE(&names[n]) + sizeof(void *))
262 { 262 {
263 ngx_log_error(NGX_LOG_EMERG, hinit->pool->log, 0, 263 ngx_log_error(NGX_LOG_EMERG, hinit->pool->log, 0,
264 "could not build the %s, you should " 264 "could not build %s, you should "
265 "increase %s_bucket_size: %i", 265 "increase %s_bucket_size: %i",
266 hinit->name, hinit->name, hinit->bucket_size); 266 hinit->name, hinit->name, hinit->bucket_size);
267 return NGX_ERROR; 267 return NGX_ERROR;
268 } 268 }
269 } 269 }