- Timestamp:
- Mar 1, 2007 12:05:45 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.5-stable/pjlib/src/pj/pool_caching.c
r974 r1020 272 272 pool = pool->next; 273 273 } 274 PJ_LOG(3,("cachpool", " Total %9d of %9d (%d %%) used!", 275 total_used, total_capacity, 276 total_used * 100 / total_capacity)); 274 if (total_capacity) { 275 PJ_LOG(3,("cachpool", " Total %9d of %9d (%d %%) used!", 276 total_used, total_capacity, 277 total_used * 100 / total_capacity)); 278 } 277 279 } 278 280
Note: See TracChangeset
for help on using the changeset viewer.