diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-17 06:41:10 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-17 06:41:10 +0000 |
commit | 1960a3b96573ad1ec73cd50255edde29cc80df88 (patch) | |
tree | 3cf78c7ddb1bb155116886ed28f231a8e3c22420 | |
parent | a4402ecc8c1e75c72025329ad4ca99320931c8b4 (diff) | |
download | postgresql-1960a3b96573ad1ec73cd50255edde29cc80df88.tar.gz postgresql-1960a3b96573ad1ec73cd50255edde29cc80df88.zip |
changed missed err() change to err_out()Release_2_0_0
Found/submittd by David Bennett
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 2a1832349ab..c54544d902f 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -7,7 +7,7 @@ * Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.5 1996/08/13 01:28:28 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.6 1996/08/17 06:41:10 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -743,7 +743,7 @@ gettype(char *type) return(gettype(type)); } elog(WARN, "Error: unknown type '%s'.\n", type); - err(); + err_out(); /* not reached, here to make compiler happy */ return 0; } |