Commit 711e0c63 authored by Neil Conway's avatar Neil Conway

Fix typo in comment.

parent 6e9c974e
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/mmgr/aset.c,v 1.66 2006/03/05 15:58:49 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/mmgr/aset.c,v 1.67 2006/06/28 22:05:37 neilc Exp $
* *
* NOTE: * NOTE:
* This is a new (Feb. 05, 1999) implementation of the allocation set * This is a new (Feb. 05, 1999) implementation of the allocation set
...@@ -883,9 +883,9 @@ AllocSetRealloc(MemoryContext context, void *pointer, Size size) ...@@ -883,9 +883,9 @@ AllocSetRealloc(MemoryContext context, void *pointer, Size size)
if (oldsize > ALLOC_CHUNK_LIMIT) if (oldsize > ALLOC_CHUNK_LIMIT)
{ {
/* /*
* The chunk must been allocated as a single-chunk block. Find the * The chunk must have been allocated as a single-chunk block. Find
* containing block and use realloc() to make it bigger with minimum * the containing block and use realloc() to make it bigger with
* space wastage. * minimum space wastage.
*/ */
AllocBlock block = set->blocks; AllocBlock block = set->blocks;
AllocBlock prevblock = NULL; AllocBlock prevblock = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment