diff options
author | 2017-04-05 10:45:39 +0000 | |
---|---|---|
committer | 2017-04-05 10:45:39 +0000 | |
commit | 5f5037e3ae15162c687706a62180a535a9ba3210 (patch) | |
tree | 2d75524dae60e2adc4f5856946487d3aa96e7fb9 | |
parent | Change tty_repeat_space to write large sets of spaces together instead (diff) | |
download | wireguard-openbsd-5f5037e3ae15162c687706a62180a535a9ba3210.tar.xz wireguard-openbsd-5f5037e3ae15162c687706a62180a535a9ba3210.zip |
cfg_file can be static.
-rw-r--r-- | usr.bin/tmux/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cfg.c b/usr.bin/tmux/cfg.c index a86a46e7be3..04e9780ba4a 100644 --- a/usr.bin/tmux/cfg.c +++ b/usr.bin/tmux/cfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfg.c,v 1.54 2017/02/03 11:57:27 nicm Exp $ */ +/* $OpenBSD: cfg.c,v 1.55 2017/04/05 10:45:39 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -28,7 +28,7 @@ #include "tmux.h" -char *cfg_file; +static char *cfg_file; int cfg_finished; static char **cfg_causes; static u_int cfg_ncauses; |