From a5150dc658a1f3d0fd15ce42add5d0aaca735ada Mon Sep 17 00:00:00 2001
From: Tom Lane <tgl@sss.pgh.pa.us>
Date: Sun, 14 Nov 1999 19:01:04 +0000
Subject: [PATCH] Fix typo so it actually compiles...

---
 src/backend/access/nbtree/nbtpage.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/backend/access/nbtree/nbtpage.c b/src/backend/access/nbtree/nbtpage.c
index 9959fcbd22e..cc56126a218 100644
--- a/src/backend/access/nbtree/nbtpage.c
+++ b/src/backend/access/nbtree/nbtpage.c
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.32 1999/11/14 16:22:59 momjian Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtpage.c,v 1.33 1999/11/14 19:01:04 tgl Exp $
  *
  *	NOTES
  *	   Postgres btree pages look like ordinary relation pages.	The opaque
@@ -501,8 +501,8 @@ _bt_getstackbuf(Relation rel, BTStack stack, int access)
 	for (;;)
 	{
 		blkno = opaque->btpo_next;
-		if (P_RIGHTMOST(opaque))R
-			elog(FATAL, "my bits moved right off the end of the world!\nTry recreating the index.");
+		if (P_RIGHTMOST(opaque))
+			elog(FATAL, "my bits moved right off the end of the world!\n\tTry recreating the index.");
 
 		_bt_relbuf(rel, buf, access);
 		buf = _bt_getbuf(rel, blkno, access);
-- 
GitLab