summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tmux.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2016-05-04 21:29:47 +0000
committernicm <nicm@openbsd.org>2016-05-04 21:29:47 +0000
commit5fcc80c98386cc7f2ab0023ec881f94b3de513d7 (patch)
treecf754b69855f6dba74240c8af5b720a1c7dda8be /usr.bin/tmux/tmux.c
parentKill #ifdef INET6 occurrences in userland. (diff)
downloadwireguard-openbsd-5fcc80c98386cc7f2ab0023ec881f94b3de513d7.tar.xz
wireguard-openbsd-5fcc80c98386cc7f2ab0023ec881f94b3de513d7.zip
Fix up a couple of long lines.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r--usr.bin/tmux/tmux.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c
index e9d4c2ed219..fc6572de684 100644
--- a/usr.bin/tmux/tmux.c
+++ b/usr.bin/tmux/tmux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.c,v 1.168 2016/03/05 16:08:38 nicm Exp $ */
+/* $OpenBSD: tmux.c,v 1.169 2016/05/04 21:29:47 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -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);
}