fixed err() -> err_out() pointed out by David Bennett...

This commit is contained in:
Marc G. Fournier 1996-08-17 07:50:21 +00:00
parent 7d1402d071
commit f46246a279
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * 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)); return(gettype(type));
} }
elog(WARN, "Error: unknown type '%s'.\n", type); elog(WARN, "Error: unknown type '%s'.\n", type);
err(); err_out();
/* not reached, here to make compiler happy */ /* not reached, here to make compiler happy */
return 0; return 0;
} }