]> granicus.if.org Git - postgresql/commitdiff
fixed err() -> err_out() pointed out by David Bennett...
authorMarc G. Fournier <scrappy@hub.org>
Sat, 17 Aug 1996 07:50:21 +0000 (07:50 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Sat, 17 Aug 1996 07:50:21 +0000 (07:50 +0000)
src/backend/bootstrap/bootstrap.c

index d8dff6905153f09040c096a6b605246cbbc7c2d7..84a769dc91c8090dc03a21c4bd028872e2c03852 100644 (file)
@@ -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;
 }