diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-12-11 18:01:11 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-12-11 18:01:11 +0000 |
commit | 2a6b2153280278d356dfbdd2af36887d5a1c8763 (patch) | |
tree | 82f6ebafd999b60d3b67cc66e68c9f00df95ec59 /tty-term.c | |
parent | 2a3456cd3b234a2f5d0b6724fe41bb62b8deab4e (diff) | |
parent | 88bc8f3528b973adb17f541e21aa415923a10f1e (diff) | |
download | rtmux-2a6b2153280278d356dfbdd2af36887d5a1c8763.tar.gz rtmux-2a6b2153280278d356dfbdd2af36887d5a1c8763.tar.bz2 rtmux-2a6b2153280278d356dfbdd2af36887d5a1c8763.zip |
Merge branch 'obsd-master'
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"); |