aboutsummaryrefslogtreecommitdiff
path: root/tty-term.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2015-12-11 19:59:08 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2015-12-11 19:59:08 +0000
commit5a5db02b8514eff40b97b3f3e4e85a3d948b57da (patch)
treeb365177fbccd29ab040ae598fa22a6bf2e10638d /tty-term.c
parent38cc1a1843b370eaeff749802d1d8803b73c4b93 (diff)
parent2a6b2153280278d356dfbdd2af36887d5a1c8763 (diff)
downloadrtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.tar.gz
rtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.tar.bz2
rtmux-5a5db02b8514eff40b97b3f3e4e85a3d948b57da.zip
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'tty-term.c')
-rw-r--r--tty-term.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tty-term.c b/tty-term.c
index 21756e51..df69bd15 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -409,12 +409,12 @@ tty_term_find(char *name, int fd, char **cause)
if (setupterm(name, fd, &error) != OK) {
switch (error) {
case 1:
- xasprintf(
- cause, "can't use hardcopy terminal: %s", name);
+ xasprintf(cause, "can't use hardcopy terminal: %s",
+ name);
break;
case 0:
- xasprintf(
- cause, "missing or unsuitable terminal: %s", name);
+ xasprintf(cause, "missing or unsuitable terminal: %s",
+ name);
break;
case -1:
xasprintf(cause, "can't find terminfo database");