diff options
author | Neil Conway <neilc@samurai.com> | 2006-06-28 22:05:37 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-06-28 22:05:37 +0000 |
commit | 711e0c63bb893034b22d2ea9114d3c49399c4ccf (patch) | |
tree | 6973a73fc203f2b52772f38d87b68c361ec6e282 | |
parent | 6e9c974e437b2e455a6362cfbfef3fc48e66280c (diff) | |
download | postgresql-711e0c63bb893034b22d2ea9114d3c49399c4ccf.tar.gz postgresql-711e0c63bb893034b22d2ea9114d3c49399c4ccf.zip |
Fix typo in comment.
-rw-r--r-- | src/backend/utils/mmgr/aset.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/mmgr/aset.c b/src/backend/utils/mmgr/aset.c index 8295ac6bc91..5762607b9e3 100644 --- a/src/backend/utils/mmgr/aset.c +++ b/src/backend/utils/mmgr/aset.c @@ -11,7 +11,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * 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: * This is a new (Feb. 05, 1999) implementation of the allocation set @@ -883,9 +883,9 @@ AllocSetRealloc(MemoryContext context, void *pointer, Size size) if (oldsize > ALLOC_CHUNK_LIMIT) { /* - * The chunk must been allocated as a single-chunk block. Find the - * containing block and use realloc() to make it bigger with minimum - * space wastage. + * The chunk must have been allocated as a single-chunk block. Find + * the containing block and use realloc() to make it bigger with + * minimum space wastage. */ AllocBlock block = set->blocks; AllocBlock prevblock = NULL; |