diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-11 19:59:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-12-11 19:59:08 +0000 |
commit | 5a5db02b8514eff40b97b3f3e4e85a3d948b57da (patch) | |
tree | b365177fbccd29ab040ae598fa22a6bf2e10638d /tty-term.c | |
parent | 38cc1a1843b370eaeff749802d1d8803b73c4b93 (diff) | |
parent | 2a6b2153280278d356dfbdd2af36887d5a1c8763 (diff) | |
download | rtmux-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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"); |