Skip to content

Commit f46246a

Browse files
committed
fixed err() -> err_out() pointed out by David Bennett...
1 parent 7d1402d commit f46246a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/bootstrap/bootstrap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.4 1996/07/23 02:23:05 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.4.2.1 1996/08/17 07:50:21 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -747,7 +747,7 @@ gettype(char *type)
747747
return(gettype(type));
748748
}
749749
elog(WARN, "Error: unknown type '%s'.\n", type);
750-
err();
750+
err_out();
751751
/* not reached, here to make compiler happy */
752752
return 0;
753753
}

0 commit comments

Comments
 (0)