diff options
author | Thomas Adam <thomas@xteddy.org> | 2021-08-20 20:01:27 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2021-08-20 20:01:27 +0100 |
commit | 944fde7c57c4f3caebb04cfc3943a81ee9729de8 (patch) | |
tree | adaf9710dee065de66e40cd12359a403bd3f6dea /window-copy.c | |
parent | 41822ef782122be42305c0c21e2f166077d09002 (diff) | |
parent | 6cbc83c6a64f272575aac1ee32cc0a0b1cb75c7b (diff) | |
download | rtmux-944fde7c57c4f3caebb04cfc3943a81ee9729de8.tar.gz rtmux-944fde7c57c4f3caebb04cfc3943a81ee9729de8.tar.bz2 rtmux-944fde7c57c4f3caebb04cfc3943a81ee9729de8.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'window-copy.c')
-rw-r--r-- | window-copy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/window-copy.c b/window-copy.c index 951d7581..c3b1a66b 100644 --- a/window-copy.c +++ b/window-copy.c @@ -2226,7 +2226,7 @@ window_copy_cmd_search_backward_incremental(struct window_copy_cmd_state *cs) data->timeout = 0; - log_debug ("%s: %s", __func__, argument); + log_debug("%s: %s", __func__, argument); prefix = *argument++; if (data->searchx == -1 || data->searchy == -1) { @@ -2281,7 +2281,7 @@ window_copy_cmd_search_forward_incremental(struct window_copy_cmd_state *cs) data->timeout = 0; - log_debug ("%s: %s", __func__, argument); + log_debug("%s: %s", __func__, argument); prefix = *argument++; if (data->searchx == -1 || data->searchy == -1) { @@ -2859,7 +2859,7 @@ window_copy_command(struct window_mode_entry *wme, struct client *c, args->argc - 1 > window_copy_cmd_table[i].maxargs) break; clear = window_copy_cmd_table[i].clear; - action = window_copy_cmd_table[i].f (&cs); + action = window_copy_cmd_table[i].f(&cs); break; } } |