From f2d249fdc7449396d88efb3ee7ff957eba26c4dd Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Tue, 22 Sep 2009 13:49:13 +0000 Subject: Sync OpenBSD patchset 337: Drop tiny union from option struct. --- tmux.h | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index 293e9ec0..9dc80604 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.446 2009-09-22 13:45:06 tcunha Exp $ */ +/* $Id: tmux.h,v 1.447 2009-09-22 13:49:13 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -543,10 +543,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