summaryrefslogtreecommitdiff
path: root/lib/binary.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/binary.h')
-rw-r--r--lib/binary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/binary.h b/lib/binary.h
index 1fcfdf57..b419e9e2 100644
--- a/lib/binary.h
+++ b/lib/binary.h
@@ -19,7 +19,7 @@ class CompareCallback
{
public:
virtual ~CompareCallback() {}
- virtual void updateCompareStatus(zen::UInt64 totalBytesTransferred) = 0;
+ virtual void updateCompareStatus(zen::UInt64 totalBytes) = 0;
};
bool filesHaveSameContent(const Zstring& filename1, const Zstring& filename2, CompareCallback& callback); //throw FileError
bgstack15