diff options
author | nicm <nicm> | 2021-04-09 07:02:00 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-04-09 07:02:00 +0000 |
commit | 73cbe46f8d871b70310735276f34d9c207412587 (patch) | |
tree | c70007748a5a6a8557baa5a93b84a0d8e7b08fa9 | |
parent | 30fb6283886cdccf183bb480a2c1976ba1a7e60e (diff) | |
download | rtmux-73cbe46f8d871b70310735276f34d9c207412587.tar.gz rtmux-73cbe46f8d871b70310735276f34d9c207412587.tar.bz2 rtmux-73cbe46f8d871b70310735276f34d9c207412587.zip |
Change a type to fix a warning with some compilers.
-rw-r--r-- | input-keys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/input-keys.c b/input-keys.c index 40567a49..ab7d2212 100644 --- a/input-keys.c +++ b/input-keys.c @@ -430,7 +430,7 @@ input_key_pane(struct window_pane *wp, key_code key, struct mouse_event *m) } static void -input_key_write(const char *from, struct bufferevent *bev, const void *data, +input_key_write(const char *from, struct bufferevent *bev, const char *data, size_t size) { log_debug("%s: %.*s", from, (int)size, data); |