aboutsummaryrefslogtreecommitdiff
path: root/tty-term.c
diff options
context:
space:
mode:
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");