Skip to content

Commit 1add01b

Browse files
committed
No wonder the Linux version kept screwing up...err() was fixed in
the wrong file... Pointed out by: Philip Plane <P.J.Plane@massey.ac.nz>
1 parent fa11e5e commit 1add01b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/bootstrap/bootparse.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1 1996/07/09 06:21:14 scrappy Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootparse.y,v 1.1.1.1.2.1 1996/08/20 15:25:29 scrappy Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -175,7 +175,7 @@ InsertStmt:
175175
elog(WARN,"incorrect number of values for tuple");
176176
if (reldesc == (Relation)NULL) {
177177
elog(WARN,"must OPEN RELATION before INSERT\n");
178-
err();
178+
err_out();
179179
}
180180
if (DebugMode)
181181
puts("Insert Begin");

0 commit comments

Comments
 (0)