diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-01-28 23:11:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-01-28 23:11:45 +0000 |
commit | cdfe5cb574bc62282827ec322e684a6496194cae (patch) | |
tree | 6147234c73dd13532380662b2ccb9239bbcd8df1 /usr.bin | |
parent | 3d20557ab2bf84a79842200cebf73e0088d2c606 (diff) |
Fix missing argument, stupid last minute changes...
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index f5b04e744c0..f3ddb20c983 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.43 2014/01/28 23:07:09 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.44 2014/01/28 23:11:44 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -856,7 +856,7 @@ options_table_populate_tree( options_set_string(oo, oe->name, "%s", oe->default_str); break; case OPTIONS_TABLE_STYLE: - options_set_style(oo, oe->name, oe->default_str); + options_set_style(oo, oe->name, oe->default_str, 0); break; default: options_set_number(oo, oe->name, oe->default_num); |