From 1cd4c141167131f0739a654c6f703fc1a5154f0f Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 15 Jan 2000 02:59:43 +0000 Subject: Fixed all elog related warnings, as well as a few others. --- src/backend/access/gist/gistscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/access/gist/gistscan.c') diff --git a/src/backend/access/gist/gistscan.c b/src/backend/access/gist/gistscan.c index e7a864985a4..a7d1faf43db 100644 --- a/src/backend/access/gist/gistscan.c +++ b/src/backend/access/gist/gistscan.c @@ -266,7 +266,7 @@ gistdropscan(IndexScanDesc s) prev = l; if (l == (GISTScanList) NULL) - elog(ERROR, "GiST scan list corrupted -- cannot find 0x%lx", s); + elog(ERROR, "GiST scan list corrupted -- cannot find 0x%p", (void*)s); if (prev == (GISTScanList) NULL) GISTScans = l->gsl_next; -- cgit v1.2.3