diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-20 17:50:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-08-20 17:50:43 +0000 |
commit | a1e05a9c0cbadc20fc2e9fcf1b48de3baf5cab0a (patch) | |
tree | dee27abcaf212c3340a75848a95e75e6058c7f26 /usr.bin/tmux/server-client.c | |
parent | fabed58bf5b8af203969094bfdcceadba4b28559 (diff) |
Remove stray spaces after function names.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r-- | usr.bin/tmux/server-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c index 73c1b21e0c5..099e72065db 100644 --- a/usr.bin/tmux/server-client.c +++ b/usr.bin/tmux/server-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server-client.c,v 1.380 2021/08/13 18:54:54 nicm Exp $ */ +/* $OpenBSD: server-client.c,v 1.381 2021/08/20 17:50:42 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -2378,7 +2378,7 @@ server_client_set_flags(struct client *c, const char *flags) uint64_t flag; int not; - s = copy = xstrdup (flags); + s = copy = xstrdup(flags); while ((next = strsep(&s, ",")) != NULL) { not = (*next == '!'); if (not) |