diff options
author | nicm <nicm> | 2017-01-12 15:36:35 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-12 15:36:35 +0000 |
commit | 24cba5907b5006363ac7f83f31801153f9c23b37 (patch) | |
tree | 9d6522e1a90ed7446f30231344077f1bbde03931 /style.c | |
parent | dad3090d3201bd8272cb762beea8ef3aa8ce9673 (diff) | |
download | rtmux-24cba5907b5006363ac7f83f31801153f9c23b37.tar.gz rtmux-24cba5907b5006363ac7f83f31801153f9c23b37.tar.bz2 rtmux-24cba5907b5006363ac7f83f31801153f9c23b37.zip |
Simplify appending to string options.
Diffstat (limited to 'style.c')
-rw-r--r-- | style.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -143,7 +143,7 @@ style_update_new(struct options *oo, const char *name, const char *newname) o = options_find1(oo, newname); if (o == NULL) - o = options_set_style(oo, newname, "default", 0); + o = options_set_style(oo, newname, 0, "default"); gc = &o->style; o = options_find1(oo, name); |