=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/options-table.c,v retrieving revision 1.77 retrieving revision 1.78 diff -u -r1.77 -r1.78 --- src/usr.bin/tmux/options-table.c 2017/01/11 14:56:44 1.77 +++ src/usr.bin/tmux/options-table.c 2017/01/12 15:36:35 1.78 @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.77 2017/01/11 14:56:44 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.78 2017/01/12 15:36:35 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott @@ -915,10 +915,11 @@ continue; switch (oe->type) { case OPTIONS_TABLE_STRING: - options_set_string(oo, oe->name, "%s", oe->default_str); + options_set_string(oo, oe->name, 0, "%s", + oe->default_str); break; case OPTIONS_TABLE_STYLE: - options_set_style(oo, oe->name, oe->default_str, 0); + options_set_style(oo, oe->name, 0, oe->default_str); break; default: options_set_number(oo, oe->name, oe->default_num);