Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit a5150dc

Browse files
committed
Fix typo so it actually compiles...
1 parent 7a203a3 commit a5150dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/access/nbtree/nbtpage.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.32 1999/11/14 16:22:59 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.33 1999/11/14 19:01:04 tgl Exp $
1212
*
1313
* NOTES
1414
* Postgres btree pages look like ordinary relation pages. The opaque
@@ -501,8 +501,8 @@ _bt_getstackbuf(Relation rel, BTStack stack, int access)
501501
for (;;)
502502
{
503503
blkno = opaque->btpo_next;
504-
if (P_RIGHTMOST(opaque))R
505-
elog(FATAL, "my bits moved right off the end of the world!\nTry recreating the index.");
504+
if (P_RIGHTMOST(opaque))
505+
elog(FATAL, "my bits moved right off the end of the world!\n\tTry recreating the index.");
506506

507507
_bt_relbuf(rel, buf, access);
508508
buf = _bt_getbuf(rel, blkno, access);

0 commit comments

Comments
 (0)