aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authornicm <nicm>2020-09-22 05:23:34 +0000
committernicm <nicm>2020-09-22 05:23:34 +0000
commit86d6ac2f0695b02bdbef542cce3cdb0cca39160e (patch)
tree3f1125781bcd4ac2dcf504fe39258a639fe849e6 /tmux.c
parent88b66e9e28733676b15a996d8fb5cbf66e01bc88 (diff)
downloadrtmux-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.c')
-rw-r--r--tmux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmux.c b/tmux.c
index a9aec43d..b7fc5121 100644
--- a/tmux.c
+++ b/tmux.c
@@ -331,8 +331,8 @@ main(int argc, char **argv)
char *path = NULL, *label = NULL;
char *cause, **var;
const char *s, *shell, *cwd;
- int opt, flags = 0, keys;
- int feat = 0;
+ int opt, keys, feat = 0;
+ uint64_t flags = 0;
const struct options_table_entry *oe;
if (setlocale(LC_CTYPE, "en_US.UTF-8") == NULL &&