diff options
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r-- | src/backend/access/heap/heapam.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index fa4dbae7ae1..e1f969dffa2 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.17 1997/09/08 02:20:28 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.18 1997/09/08 20:54:08 momjian Exp $ * * * INTERFACE ROUTINES @@ -214,7 +214,7 @@ static HeapTuple heapgettup(Relation relation, ItemPointer tid, int dir, - Buffer * b, + Buffer *b, TimeQual timeQual, int nkeys, ScanKey key) @@ -805,7 +805,7 @@ elog(DEBUG, "heap_getnext([%s,nkeys=%d],backw=%d,0x%x) called", \ HeapTuple heap_getnext(HeapScanDesc scandesc, int backw, - Buffer * b) + Buffer *b) { register HeapScanDesc sdesc = scandesc; Buffer localb; @@ -1033,7 +1033,7 @@ HeapTuple heap_fetch(Relation relation, TimeQual timeQual, ItemPointer tid, - Buffer * b) + Buffer *b) { ItemId lp; Buffer buffer; |