diff options
author | nicm <nicm> | 2017-02-07 18:06:42 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-07 18:06:42 +0000 |
commit | 20f5e377fbe36bfee36f1a22777dafa77ff72ce5 (patch) | |
tree | b02aa3352620e9224d9db9f793eff4863f80a8e2 | |
parent | 6ea36afc4b52f0b5e29260ee9bbfb7e76db4078f (diff) | |
download | rtmux-20f5e377fbe36bfee36f1a22777dafa77ff72ce5.tar.gz rtmux-20f5e377fbe36bfee36f1a22777dafa77ff72ce5.tar.bz2 rtmux-20f5e377fbe36bfee36f1a22777dafa77ff72ce5.zip |
Remove a debugging leftover.
-rw-r--r-- | format.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -859,9 +859,8 @@ format_replace(struct format_tree *ft, const char *key, size_t keylen, *ptr = '\0'; found = format_find(ft, copy + 1, modifiers); - if (found == NULL) { - log_debug("XXX %s", copy + 1); - found = format_expand(ft, copy + 1);} + if (found == NULL) + found = format_expand(ft, copy + 1); if (format_choose(ptr + 1, &left, &right) != 0) goto fail; |