summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/output.c5
-rw-r--r--src/output.h2
2 files changed, 2 insertions, 5 deletions
diff --git a/src/output.c b/src/output.c
index e92f04a..94b6710 100644
--- a/src/output.c
+++ b/src/output.c
@@ -19,7 +19,6 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
-#include "init.h"
#include "output.h"
void
@@ -47,7 +46,7 @@ db_warn(const char *fmt, ...)
}
void
-db_err(int status, const char *fmt, ...)
+db_err(const char *fmt, ...)
{
va_list ap;
@@ -56,6 +55,4 @@ db_err(int status, const char *fmt, ...)
vprintf(fmt, ap);
va_end(ap);
putchar('\n');
-
- quit(status);
}
diff --git a/src/output.h b/src/output.h
index 59a7c6c..11737c6 100644
--- a/src/output.h
+++ b/src/output.h
@@ -21,6 +21,6 @@
void db_dbg(const char *fmt, ...);
void db_warn(const char *fmt, ...);
-void db_err(int status, const char *fmt, ...);
+void db_err(const char *fmt, ...);
#endif /* DB_OUTPUT_H_ */