mirror of
https://github.com/tmux/tmux.git
synced 2025-11-05 01:56:07 +00:00
A couple more spacing fixes.
This commit is contained in:
@@ -579,7 +579,7 @@ cmd_parse_get_error(const char *file, u_int line, const char *error)
|
|||||||
if (file == NULL)
|
if (file == NULL)
|
||||||
s = xstrdup(error);
|
s = xstrdup(error);
|
||||||
else
|
else
|
||||||
xasprintf (&s, "%s:%u: %s", file, line, error);
|
xasprintf(&s, "%s:%u: %s", file, line, error);
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
2
format.c
2
format.c
@@ -2085,7 +2085,7 @@ static void *
|
|||||||
format_cb_session_windows(struct format_tree *ft)
|
format_cb_session_windows(struct format_tree *ft)
|
||||||
{
|
{
|
||||||
if (ft->s != NULL)
|
if (ft->s != NULL)
|
||||||
return (format_printf ("%u", winlink_count(&ft->s->windows)));
|
return (format_printf("%u", winlink_count(&ft->s->windows)));
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user