diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-01-15 02:59:43 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-01-15 02:59:43 +0000 |
commit | 1cd4c141167131f0739a654c6f703fc1a5154f0f (patch) | |
tree | 2459cd9f0bc38d80b6038a877603af9ae3fdb988 /src/backend/access/index/istrat.c | |
parent | 7c9390caa14ea2d5d99d69d2a34eee4d45d43b9c (diff) |
Fixed all elog related warnings, as well as a few others.
Diffstat (limited to 'src/backend/access/index/istrat.c')
-rw-r--r-- | src/backend/access/index/istrat.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/access/index/istrat.c b/src/backend/access/index/istrat.c index ee3477bedc1..7169e2ec66a 100644 --- a/src/backend/access/index/istrat.c +++ b/src/backend/access/index/istrat.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.38 1999/11/22 17:55:53 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/index/Attic/istrat.c,v 1.39 2000/01/15 02:59:21 petere Exp $ * *------------------------------------------------------------------------- */ @@ -502,8 +502,8 @@ OperatorRelationFillScanKeyEntry(Relation operatorRelation, { if (IsBootstrapProcessingMode()) heap_endscan(scan); - elog(ERROR, "OperatorObjectIdFillScanKeyEntry: unknown operator %lu", - (uint32) operatorObjectId); + elog(ERROR, "OperatorObjectIdFillScanKeyEntry: unknown operator %u", + operatorObjectId); } entry->sk_flags = 0; @@ -517,8 +517,8 @@ OperatorRelationFillScanKeyEntry(Relation operatorRelation, if (!RegProcedureIsValid(entry->sk_procedure)) { elog(ERROR, - "OperatorObjectIdFillScanKeyEntry: no procedure for operator %lu", - (uint32) operatorObjectId); + "OperatorObjectIdFillScanKeyEntry: no procedure for operator %u", + operatorObjectId); } } |