diff options
author | nicm <nicm> | 2015-12-11 16:37:21 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-12-11 16:37:21 +0000 |
commit | 88bc8f3528b973adb17f541e21aa415923a10f1e (patch) | |
tree | 9e89d6e82fc713a2991db723d12df9d28fa35b6c /tty-term.c | |
parent | f2be3ad46fc37e5689d836f994fa79968d047133 (diff) | |
download | rtmux-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.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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"); |