summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/client.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-10-27 15:58:44 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-10-27 15:58:44 +0000
commit6b5068321aea4cd3b312055d770418e4c47628ae (patch)
tree57557df7c7630b2b8c8b1a2444b249b596ca8a6e /usr.bin/tmux/client.c
parent1a4bf61aea2abac845e907cd3172e2b578c0806a (diff)
Move struct options into options.c.
Diffstat (limited to 'usr.bin/tmux/client.c')
-rw-r--r--usr.bin/tmux/client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c
index b6e6042e0d5..17ac92cac08 100644
--- a/usr.bin/tmux/client.c
+++ b/usr.bin/tmux/client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: client.c,v 1.99 2015/10/27 13:23:24 nicm Exp $ */
+/* $OpenBSD: client.c,v 1.100 2015/10/27 15:58:42 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -291,9 +291,9 @@ client_main(struct event_base *base, int argc, char **argv, int flags)
fatal("pledge failed");
/* Free stuff that is not used in the client. */
- options_free(&global_options);
- options_free(&global_s_options);
- options_free(&global_w_options);
+ options_free(global_options);
+ options_free(global_s_options);
+ options_free(global_w_options);
environ_free(&global_environ);
/* Create stdin handler. */