aboutsummaryrefslogtreecommitdiff
path: root/tty-term.c
diff options
context:
space:
mode:
authornicm <nicm>2015-12-11 16:37:21 +0000
committernicm <nicm>2015-12-11 16:37:21 +0000
commit88bc8f3528b973adb17f541e21aa415923a10f1e (patch)
tree9e89d6e82fc713a2991db723d12df9d28fa35b6c /tty-term.c
parentf2be3ad46fc37e5689d836f994fa79968d047133 (diff)
downloadrtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.tar.gz
rtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.tar.bz2
rtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.zip
Style nits and line wrapping of function declarations.
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 5f2e1a94..27c904a4 100644
--- a/tty-term.c
+++ b/tty-term.c
@@ -406,12 +406,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");