From c4a7bf90cf7a1b6fb1c701e2d071d1e236259e70 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Mon, 14 Nov 2011 21:15:17 +0200 Subject: [PATCH] Revert "json_dump_file: Open the output file in wb mode" JSON is read as text, so line endings should be preserved. This reverts commit 32cd82127390b9fd5b5d090bc3c279d3e4d9f3a6. --- src/dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dump.c b/src/dump.c index 089474d..37f5a40 100644 --- a/src/dump.c +++ b/src/dump.c @@ -427,7 +427,7 @@ int json_dump_file(const json_t *json, const char *path, size_t flags) { int result; - FILE *output = fopen(path, "wb"); + FILE *output = fopen(path, "w"); if(!output) return -1;