diff options
author | nicm <nicm> | 2014-03-31 21:42:45 +0000 |
---|---|---|
committer | nicm <nicm> | 2014-03-31 21:42:45 +0000 |
commit | 48478ea0a990cc14d61722f9f8d3f1490d8f417a (patch) | |
tree | df43e4a2b0e6902ebe725687cde171a7b6365e45 /tmux.c | |
parent | 7bdb675469336e1c8c7c5039aff369f8245dc450 (diff) | |
download | rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.tar.gz rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.tar.bz2 rtmux-48478ea0a990cc14d61722f9f8d3f1490d8f417a.zip |
Remove log_debug2 as well and simplify log.c.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ logfile(const char *name) if (debug_level > 0) { xasprintf(&path, "tmux-%s-%ld.log", name, (long) getpid()); - log_open(debug_level, path); + log_open(path); free(path); } } |