summaryrefslogtreecommitdiff
path: root/memory
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2014-05-14 21:15:10 +0000
committerStefan Fritsch <sf@apache.org>2014-05-14 21:15:10 +0000
commit0fa37f34edd8fcb8da12111a654928f4dad3fa1f (patch)
tree38f3439493686334ded3866b8c7a99a66d74849f /memory
parent7f5b5c790db797d5cf60f1a41d7a11ef54397b19 (diff)
downloadapr-0fa37f34edd8fcb8da12111a654928f4dad3fa1f.tar.gz
Backport r1594684:
fix comment typos s/appropiate/appropriate/ git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x@1594722 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'memory')
-rw-r--r--memory/unix/apr_pools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/memory/unix/apr_pools.c b/memory/unix/apr_pools.c
index 82ea468bf..d4f2f8833 100644
--- a/memory/unix/apr_pools.c
+++ b/memory/unix/apr_pools.c
@@ -439,8 +439,8 @@ void allocator_free(apr_allocator_t *allocator, apr_memnode_t *node)
freelist = node;
}
else if (index < MAX_INDEX) {
- /* Add the node to the appropiate 'size' bucket. Adjust
- * the max_index when appropiate.
+ /* Add the node to the appropriate 'size' bucket. Adjust
+ * the max_index when appropriate.
*/
if ((node->next = allocator->free[index]) == NULL
&& index > max_index) {