Drop tiny union from option struct.

This commit is contained in:
Nicholas Marriott
2009-09-21 07:00:09 +00:00
parent c7a8db5543
commit fc9107a16a
2 changed files with 11 additions and 12 deletions

7
tmux.h
View File

@ -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;
};