summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/server-client.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2021-08-20 17:50:43 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2021-08-20 17:50:43 +0000
commita1e05a9c0cbadc20fc2e9fcf1b48de3baf5cab0a (patch)
treedee27abcaf212c3340a75848a95e75e6058c7f26 /usr.bin/tmux/server-client.c
parentfabed58bf5b8af203969094bfdcceadba4b28559 (diff)
Remove stray spaces after function names.
Diffstat (limited to 'usr.bin/tmux/server-client.c')
-rw-r--r--usr.bin/tmux/server-client.c4
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)