Ignore:
Timestamp:
Aug 25, 2015 8:45:46 AM (9 years ago)
Author:
nanang
Message:

Re #1881: Fixed compile warnings on VS2015 about declaration hides previous declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/pool_caching.c

    r4537 r5170  
    9191    /* Delete all pool in free list */ 
    9292    for (i=0; i < PJ_CACHING_POOL_ARRAY_SIZE; ++i) { 
    93         pj_pool_t *pool = (pj_pool_t*) cp->free_list[i].next; 
    9493        pj_pool_t *next; 
     94        pool = (pj_pool_t*) cp->free_list[i].next; 
    9595        for (; pool != (void*)&cp->free_list[i]; pool = next) { 
    9696            next = pool->next; 
Note: See TracChangeset for help on using the changeset viewer.