comparison src/http/ngx_http_file_cache.c @ 2693:197cda0e767e

style fix
author Igor Sysoev <igor@sysoev.ru>
date Fri, 10 Apr 2009 17:45:07 +0000
parents 627dee566f6c
children 49a1382b249b
comparison
equal deleted inserted replaced
2692:111e6e62af32 2693:197cda0e767e
415 fcn = ngx_slab_alloc_locked(cache->shpool, 415 fcn = ngx_slab_alloc_locked(cache->shpool,
416 sizeof(ngx_http_file_cache_node_t)); 416 sizeof(ngx_http_file_cache_node_t));
417 if (fcn == NULL) { 417 if (fcn == NULL) {
418 ngx_shmtx_unlock(&cache->shpool->mutex); 418 ngx_shmtx_unlock(&cache->shpool->mutex);
419 419
420 ngx_http_file_cache_forced_expire(cache); 420 (void) ngx_http_file_cache_forced_expire(cache);
421 421
422 ngx_shmtx_lock(&cache->shpool->mutex); 422 ngx_shmtx_lock(&cache->shpool->mutex);
423 423
424 fcn = ngx_slab_alloc_locked(cache->shpool, 424 fcn = ngx_slab_alloc_locked(cache->shpool,
425 sizeof(ngx_http_file_cache_node_t)); 425 sizeof(ngx_http_file_cache_node_t));