diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-20 20:04:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-20 20:04:23 +0000 |
commit | c9244b8ebd7e9260b5f45a9f311f7a4308b2e7a6 (patch) | |
tree | 82e967cb47fe4dd34726de1490de0d6d76c89073 /usr.bin/tmux/format.c | |
parent | 720f841059a27643e512b0f9ac54c28b316e79d8 (diff) |
Spacing tweaks.
Diffstat (limited to 'usr.bin/tmux/format.c')
-rw-r--r-- | usr.bin/tmux/format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/format.c b/usr.bin/tmux/format.c index ff0e6c89c23..30176be4c4c 100644 --- a/usr.bin/tmux/format.c +++ b/usr.bin/tmux/format.c @@ -1,4 +1,4 @@ -/* $OpenBSD: format.c,v 1.292 2021/08/20 17:50:42 nicm Exp $ */ +/* $OpenBSD: format.c,v 1.293 2021/08/20 20:04:22 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -3626,7 +3626,7 @@ format_build_modifiers(struct format_expand_state *es, const char **s, break; cp++; - argv = xreallocarray (argv, argc + 1, sizeof *argv); + argv = xreallocarray(argv, argc + 1, sizeof *argv); value = xstrndup(cp, end - cp); argv[argc++] = format_expand1(es, value); free(value); |