Browse Source

Bugfix: Adapt quit function to new logging design

Luke Dashjr 11 years ago
parent
commit
363f92b920
1 changed files with 1 additions and 1 deletions
  1. 1 1
      logging.h

+ 1 - 1
logging.h

@@ -131,7 +131,7 @@ extern void _bfg_clean_up(bool);
 #define quit(status, fmt, ...) do { \
 	_bfg_clean_up(false);  \
 	if (fmt) { \
-		fprintf(stderr, fmt, ##__VA_ARGS__);  \
+		fprintf(stderr, "\n" fmt, ##__VA_ARGS__);  \
 	} \
 	fprintf(stderr, "\n");  \
 	fflush(stderr);  \