mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Move struct options into options.c.
This commit is contained in:
6
client.c
6
client.c
@ -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. */
|
||||
|
Reference in New Issue
Block a user