diff options
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); } } |