|
11 | 11 | * Portions Copyright (c) 1994, Regents of the University of California |
12 | 12 | * |
13 | 13 | * IDENTIFICATION |
14 | | - * $PostgreSQL: pgsql/src/backend/utils/mmgr/aset.c,v 1.66 2006/03/05 15:58:49 momjian Exp $ |
| 14 | + * $PostgreSQL: pgsql/src/backend/utils/mmgr/aset.c,v 1.67 2006/06/28 22:05:37 neilc Exp $ |
15 | 15 | * |
16 | 16 | * NOTE: |
17 | 17 | *This is a new (Feb. 05, 1999) implementation of the allocation set |
@@ -883,9 +883,9 @@ AllocSetRealloc(MemoryContext context, void *pointer, Size size) |
883 | 883 | if (oldsize>ALLOC_CHUNK_LIMIT) |
884 | 884 | { |
885 | 885 | /* |
886 | | - * The chunk must been allocated as a single-chunk block. Find the |
887 | | - * containing block and use realloc() to make it bigger with minimum |
888 | | - * space wastage. |
| 886 | + * The chunk musthavebeen allocated as a single-chunk block. Find |
| 887 | + *thecontaining block and use realloc() to make it bigger with |
| 888 | + *minimumspace wastage. |
889 | 889 | */ |
890 | 890 | AllocBlockblock=set->blocks; |
891 | 891 | AllocBlockprevblock=NULL; |
|