comparison src/core/ngx_palloc.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents d788521e4b0e
children d620f497c50f
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
66 66
67 #if (NGX_DEBUG) 67 #if (NGX_DEBUG)
68 68
69 /* 69 /*
70 * we could allocate the pool->log from this pool 70 * we could allocate the pool->log from this pool
71 * so we can not use this log while the free()ing the pool 71 * so we cannot use this log while free()ing the pool
72 */ 72 */
73 73
74 for (p = pool, n = pool->d.next; /* void */; p = n, n = n->d.next) { 74 for (p = pool, n = pool->d.next; /* void */; p = n, n = n->d.next) {
75 ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, pool->log, 0, 75 ngx_log_debug2(NGX_LOG_DEBUG_ALLOC, pool->log, 0,
76 "free: %p, unused: %uz", p, p->d.end - p->d.last); 76 "free: %p, unused: %uz", p, p->d.end - p->d.last);