diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-09-22 05:23:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2020-09-22 05:23:35 +0000 |
commit | 70dd98ab60af24993997abcb78bbce47d54cab64 (patch) | |
tree | 65a4a82803f1576da627c4e45d76316d4adb0cdf /usr.bin/tmux/tmux.c | |
parent | ec61f22b41f5eac765432c49c55ba7a52d1a9c1d (diff) |
Fix warnings on some platforms with %llx and add a new message to handle
64-bit client flags.
Diffstat (limited to 'usr.bin/tmux/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 4a610b4c769..f9ead52c55c 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.202 2020/06/02 08:17:27 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.203 2020/09/22 05:23:34 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -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 && |