summaryrefslogtreecommitdiff
path: root/crash.c
diff options
context:
space:
mode:
Diffstat (limited to 'crash.c')
-rw-r--r--crash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crash.c b/crash.c
index f28d88a..a894152 100644
--- a/crash.c
+++ b/crash.c
@@ -7,6 +7,6 @@ void crash(const char* format, ...) {
va_list args;
va_start(args, format);
vfprintf(stderr, format, args);
- exit(1);
va_end(args);
-} \ No newline at end of file
+ exit(1);
+}