aboutsummaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'log.c')
-rw-r--r--log.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/log.c b/log.c
index abc097dc..0e0d1d1a 100644
--- a/log.c
+++ b/log.c
@@ -23,7 +23,6 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <vis.h>
#include "tmux.h"
@@ -144,7 +143,7 @@ fatal(const char *msg, ...)
va_list ap;
if (snprintf(tmp, sizeof tmp, "fatal: %s: ", strerror(errno)) < 0)
- exit (1);
+ exit(1);
va_start(ap, msg);
log_vwrite(msg, ap, tmp);