summaryrefslogtreecommitdiff
path: root/zen/xml_io.cpp
diff options
context:
space:
mode:
authorDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
committerDaniel Wilhelm <daniel@wili.li>2015-10-02 14:53:20 +0200
commit94db751716dd2851f99b5c4c2981da1d1f4780f8 (patch)
treee4ffc9f5ae2b2873f267a6e5d3d2092c8aad49a7 /zen/xml_io.cpp
parent6.10 (diff)
downloadFreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.gz
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.tar.bz2
FreeFileSync-94db751716dd2851f99b5c4c2981da1d1f4780f8.zip
6.11
Diffstat (limited to 'zen/xml_io.cpp')
-rw-r--r--zen/xml_io.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/xml_io.cpp b/zen/xml_io.cpp
index 485d78bb..9ac4b87f 100644
--- a/zen/xml_io.cpp
+++ b/zen/xml_io.cpp
@@ -5,7 +5,7 @@
// **************************************************************************
#include "xml_io.h"
-#include "file_handling.h"
+#include "file_access.h"
#include "file_io.h"
#include "serialize.h"
@@ -66,7 +66,7 @@ void zen::saveXmlDocument(const XmlDoc& doc, const Zstring& filepath) //throw Fi
try
{
if (getFilesize(filepath) == stream.size()) //throw FileError
- if (loadBinStream<std::string>(filepath) == stream) //throw FileError
+ if (loadBinStream<std::string>(filepath, nullptr) == stream) //throw FileError
return;
}
catch (FileError&) {}
bgstack15