diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-08-17 07:50:21 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-08-17 07:50:21 +0000 |
commit | f46246a27967945253ea996450e66da2b4f398cf (patch) | |
tree | a26577fac0b7ae82d7aa03dffd9ea7d5e538c95d /src/backend/bootstrap/bootstrap.c | |
parent | 7d1402d0716ec3d48ff827d05276855e4234e42c (diff) |
fixed err() -> err_out() pointed out by David Bennett...
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-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 d8dff690515..84a769dc91c 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.4 1996/07/23 02:23:05 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.4.2.1 1996/08/17 07:50:21 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -747,7 +747,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; } |