summaryrefslogtreecommitdiffstats
path: root/jv_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'jv_file.c')
-rw-r--r--jv_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jv_file.c b/jv_file.c
index a6331607..54ed36be 100644
--- a/jv_file.c
+++ b/jv_file.c
@@ -18,7 +18,7 @@ jv jv_load_file(const char* filename, int raw) {
data = jv_string("");
} else {
data = jv_array();
- parser = jv_parser_new(0);
+ parser = jv_parser_new();
}
while (!feof(file) && !ferror(file)) {
char buf[4096];