summaryrefslogtreecommitdiff
path: root/zen/json.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-06-19 16:18:18 -0400
committerB Stack <bgstack15@gmail.com>2020-06-19 16:18:18 -0400
commitb2801fb887fe40875b3ec90619b011b45c1d2796 (patch)
treefbbe856cbc0ba5a5d3a831f3ec514563cc69ecb1 /zen/json.h
parentMerge branch '10.24' into 'master' (diff)
downloadFreeFileSync-b2801fb887fe40875b3ec90619b011b45c1d2796.tar.gz
FreeFileSync-b2801fb887fe40875b3ec90619b011b45c1d2796.tar.bz2
FreeFileSync-b2801fb887fe40875b3ec90619b011b45c1d2796.zip
add upstream 10.25
Diffstat (limited to 'zen/json.h')
-rw-r--r--zen/json.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/json.h b/zen/json.h
index 725874f7..0d23719c 100644
--- a/zen/json.h
+++ b/zen/json.h
@@ -43,7 +43,7 @@ struct JsonValue
std::string serializeJson(const JsonValue& jval,
- const std::string& lineBreak = "\r\n",
+ const std::string& lineBreak = "\n",
const std::string& indent = " "); //noexcept
bgstack15