diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2015-07-08 23:43:03 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2015-07-08 23:53:24 +0100 |
commit | 6c7ac8dc769435ea0231db550799d73cb479a773 (patch) | |
tree | e5de3e6642d6669a17b2afd8341ea5b82655461c /examples/c/example2.c | |
parent | 695702e323759d158366d33c24c1ff47141056e9 (diff) | |
download | libconfig-upstream/1.5.tar.gz |
Imported Upstream version 1.5upstream/1.5
Diffstat (limited to '')
-rw-r--r-- | examples/c/example2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/c/example2.c b/examples/c/example2.c index f1886b9..076a8fa 100644 --- a/examples/c/example2.c +++ b/examples/c/example2.c @@ -74,6 +74,8 @@ int main(int argc, char **argv) setting = config_setting_add(movie, "qty", CONFIG_TYPE_INT); config_setting_set_float(setting, 20); + config_set_options(&cfg, 0); + /* Write out the updated configuration. */ if(! config_write_file(&cfg, output_file)) { |