Style nits and line wrapping of function declarations.

This commit is contained in:
nicm
2015-12-11 16:37:21 +00:00
parent f2be3ad46f
commit 88bc8f3528
8 changed files with 66 additions and 66 deletions

View File

@ -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");