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.c | |
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.c')
-rw-r--r-- | tmux.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 && |