diff options
author | nicm <nicm> | 2020-09-22 05:23:34 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-09-22 05:23:34 +0000 |
commit | 86d6ac2f0695b02bdbef542cce3cdb0cca39160e (patch) | |
tree | 3f1125781bcd4ac2dcf504fe39258a639fe849e6 /tmux.h | |
parent | 88b66e9e28733676b15a996d8fb5cbf66e01bc88 (diff) | |
download | rtmux-86d6ac2f0695b02bdbef542cce3cdb0cca39160e.tar.gz rtmux-86d6ac2f0695b02bdbef542cce3cdb0cca39160e.tar.bz2 rtmux-86d6ac2f0695b02bdbef542cce3cdb0cca39160e.zip |
Fix warnings on some platforms with %llx and add a new message to handle
64-bit client flags.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -496,6 +496,7 @@ enum msgtype { MSG_IDENTIFY_CWD, MSG_IDENTIFY_FEATURES, MSG_IDENTIFY_STDOUT, + MSG_IDENTIFY_LONGFLAGS, MSG_COMMAND = 200, MSG_DETACH, @@ -2331,7 +2332,7 @@ void printflike(2, 3) cmdq_error(struct cmdq_item *, const char *, ...); void cmd_wait_for_flush(void); /* client.c */ -int client_main(struct event_base *, int, char **, int, int); +int client_main(struct event_base *, int, char **, uint64_t, int); /* key-bindings.c */ struct key_table *key_bindings_get_table(const char *, int); |