|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.42 2002/01/15 22:14:17 tgl Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/storage/page/bufpage.c,v 1.43 2002/01/30 19:34:55 tgl Exp $ |
12 | 12 | *
|
13 | 13 | *-------------------------------------------------------------------------
|
14 | 14 | */
|
@@ -447,7 +447,7 @@ PageIndexTupleDelete(Page page, OffsetNumber offnum)
|
447 | 447 | if (offset<phdr->pd_upper|| (offset+size)>phdr->pd_special||
|
448 | 448 | offset!=MAXALIGN(offset)||size!=MAXALIGN(size))
|
449 | 449 | elog(ERROR,"PageIndexTupleDelete: corrupted item pointer: offset = %u size = %u",
|
450 |
| -offset,size); |
| 450 | +offset,(unsignedint)size); |
451 | 451 |
|
452 | 452 | /*
|
453 | 453 | * First, we want to get rid of the pd_linp entry for the index tuple.
|
|