summaryrefslogtreecommitdiffstats
path: root/tmux.c
diff options
context:
space:
mode:
authornicm <nicm>2016-05-04 21:29:47 +0000
committernicm <nicm>2016-05-04 21:29:47 +0000
commit9f045787a5b12a8ee19a3cf29432a41cec4d2158 (patch)
tree1417ee3ffc87421163da773b3988e507b53fc3e5 /tmux.c
parent28e0658fa984ccc5c614e2f66f75df522b116e2c (diff)
Fix up a couple of long lines.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index f8654e2b..08b26326 100644
--- a/tmux.c
+++ b/tmux.c
@@ -193,8 +193,7 @@ main(int argc, char **argv)
if (setlocale(LC_CTYPE, "") == NULL)
errx(1, "invalid LC_ALL, LC_CTYPE or LANG");
s = nl_langinfo(CODESET);
- if (strcasecmp(s, "UTF-8") != 0 &&
- strcasecmp(s, "UTF8") != 0)
+ if (strcasecmp(s, "UTF-8") != 0 && strcasecmp(s, "UTF8") != 0)
errx(1, "need UTF-8 locale (LC_CTYPE) but have %s", s);
}