|
8 | 8 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - *$PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.27 2008/06/12 09:12:29 heikki Exp $ |
| 11 | + *$PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.28 2008/06/15 01:41:37 tgl Exp $ |
12 | 12 | *-------------------------------------------------------------------------
|
13 | 13 | */
|
14 | 14 | #include"postgres.h"
|
@@ -45,7 +45,7 @@ gistfillbuffer(Page page, IndexTuple *itup, int len, OffsetNumber off)
|
45 | 45 | l=PageAddItem(page, (Item)itup[i],sz,off, false, false);
|
46 | 46 | if (l==InvalidOffsetNumber)
|
47 | 47 | elog(ERROR,"failed to add item to GiST index page, item %d out of %d, size %d bytes",
|
48 |
| -i,len,sz); |
| 48 | +i,len,(int)sz); |
49 | 49 | off++;
|
50 | 50 | }
|
51 | 51 | }
|
|