From fc9107a16aa9a8674c7b049ecc68ea25bb026df6 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 21 Sep 2009 07:00:09 +0000 Subject: Drop tiny union from option struct. --- tmux.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'tmux.h') 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; }; -- cgit