diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-10-28 09:51:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-10-28 09:51:56 +0000 |
commit | 40292bea5af2e23c6bb1c93a31f83cbe49759bd2 (patch) | |
tree | a194b8cd92e6aa597a927b77a6bb9827b12d8e05 /usr.bin/tmux/client.c | |
parent | 56b0f7fb77db41cfb361986b6cb66954d779c413 (diff) |
Like options, move the environ struct into environ.c.
Diffstat (limited to 'usr.bin/tmux/client.c')
-rw-r--r-- | usr.bin/tmux/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index 17ac92cac08..2376206d7d8 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.100 2015/10/27 15:58:42 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.101 2015/10/28 09:51:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -294,7 +294,7 @@ client_main(struct event_base *base, int argc, char **argv, int flags) options_free(global_options); options_free(global_s_options); options_free(global_w_options); - environ_free(&global_environ); + environ_free(global_environ); /* Create stdin handler. */ setblocking(STDIN_FILENO, 0); |