diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:11:56 +0200 |
commit | 98ecf620f7de377dc8ae9ad7fbd1e3b24477e138 (patch) | |
tree | faadc6d8822c20cd3bc6f50b2a98e6c580585949 /library/binary.cpp | |
parent | 3.16 (diff) | |
download | FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.gz FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.tar.bz2 FreeFileSync-98ecf620f7de377dc8ae9ad7fbd1e3b24477e138.zip |
3.17
Diffstat (limited to 'library/binary.cpp')
-rw-r--r-- | library/binary.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/binary.cpp b/library/binary.cpp index 72fc220a..3a202711 100644 --- a/library/binary.cpp +++ b/library/binary.cpp @@ -8,7 +8,7 @@ #include "../shared/file_io.h" #include <vector> #include <wx/stopwatch.h> - +#include "../shared/int64.h" inline void setMinSize(std::vector<char>& buffer, size_t minSize) @@ -66,7 +66,7 @@ private: } -bool ffs3::filesHaveSameContent(const Zstring& filename1, const Zstring& filename2, CompareCallback& callback) +bool zen::filesHaveSameContent(const Zstring& filename1, const Zstring& filename2, CompareCallback& callback) { FileInput file1(filename1); //throw (FileError) FileInput file2(filename2); //throw (FileError) @@ -76,7 +76,7 @@ bool ffs3::filesHaveSameContent(const Zstring& filename1, const Zstring& filenam static std::vector<char> memory1; static std::vector<char> memory2; - wxLongLong bytesCompared; + zen::UInt64 bytesCompared; wxLongLong lastDelayViolation = wxGetLocalTimeMillis(); |