aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/tmux.h b/tmux.h
index b69621d6..64409ae8 100644
--- a/tmux.h
+++ b/tmux.h
@@ -545,10 +545,9 @@ struct options_entry {
OPTIONS_STRING,
OPTIONS_NUMBER,
} type;
- union {
- char *string;
- long long number;
- } value;
+
+ char *str;
+ long long num;
SPLAY_ENTRY(options_entry) entry;
};