diff options
author | nicm <nicm> | 2017-01-09 19:27:00 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-09 19:27:00 +0000 |
commit | 5330a2a85d69647f4f402c5b1fe85dc548ce5416 (patch) | |
tree | b2a99f64ded421b63817fa79c8608fde9916af27 /cfg.c | |
parent | c05002b0f2d86d7706efdc9636ee660642bdcecb (diff) | |
download | rtmux-5330a2a85d69647f4f402c5b1fe85dc548ce5416.tar.gz rtmux-5330a2a85d69647f4f402c5b1fe85dc548ce5416.tar.bz2 rtmux-5330a2a85d69647f4f402c5b1fe85dc548ce5416.zip |
Run the source-file pattern through glob(3).
Diffstat (limited to 'cfg.c')
-rw-r--r-- | cfg.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -28,11 +28,11 @@ #include "tmux.h" -char *cfg_file; -int cfg_finished; -static char **cfg_causes; -static u_int cfg_ncauses; -struct client *cfg_client; +char *cfg_file; +int cfg_finished; +static char **cfg_causes; +static u_int cfg_ncauses; +struct client *cfg_client; static enum cmd_retval cfg_done(__unused struct cmdq_item *item, __unused void *data) |