mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 05:25:04 +00:00
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 32cd821273
.
This commit is contained in:
parent
0931d938b0
commit
c4a7bf90cf
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue