diff options
author | nicm <nicm> | 2021-06-10 07:45:43 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-06-10 07:45:43 +0000 |
commit | 6c659494f5591ebba2ef91e6cfa6a24761c14915 (patch) | |
tree | 9526680400a115e9bfb22871c9eb50bfea29120a /format.c | |
parent | 02a6b39db73e55f9f30d46106c378ed4c70cb02b (diff) | |
download | rtmux-6c659494f5591ebba2ef91e6cfa6a24761c14915.tar.gz rtmux-6c659494f5591ebba2ef91e6cfa6a24761c14915.tar.bz2 rtmux-6c659494f5591ebba2ef91e6cfa6a24761c14915.zip |
Fix warnings, from Jan Tache in GitHub issue 2692.
Diffstat (limited to 'format.c')
-rw-r--r-- | format.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4199,7 +4199,7 @@ format_replace(struct format_expand_state *es, const char *key, size_t keylen, value = xstrdup("0"); } else { format_log(es, "search '%s' pane %%%u", new, wp->id); - value = format_search(fm, wp, new); + value = format_search(search, wp, new); } free(new); } else if (cmp != NULL) { |