projects
/
users
/
simon
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
578d93c
)
Fix 64-bit problem in recent patch.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 15 Jun 2008 01:41:37 +0000
(
01:41
+0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 15 Jun 2008 01:41:37 +0000
(
01:41
+0000)
src/backend/access/gist/gistutil.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/access/gist/gistutil.c
b/src/backend/access/gist/gistutil.c
index bf80127b01a9e9c5ac9e01ee6831e4f8cc1a587f..54b5060e3755c421bdb55b2863e02456d644c6c9 100644
(file)
--- a/
src/backend/access/gist/gistutil.c
+++ b/
src/backend/access/gist/gistutil.c
@@
-45,7
+45,7
@@
gistfillbuffer(Page page, IndexTuple *itup, int len, OffsetNumber off)
l = PageAddItem(page, (Item) itup[i], sz, off, false, false);
if (l == InvalidOffsetNumber)
elog(ERROR, "failed to add item to GiST index page, item %d out of %d, size %d bytes",
- i, len, sz);
+ i, len,
(int)
sz);
off++;
}
}