summaryrefslogtreecommitdiff
path: root/zen/serialize.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-11-22 08:54:34 -0500
committerB. Stack <bgstack15@gmail.com>2022-11-22 08:54:34 -0500
commita034cfca98d4408b175938740628a54f57eb7614 (patch)
tree501fd78c6276c0be8be8d2c671a58dd0598060b5 /zen/serialize.h
parentadd upstream 11.27 (diff)
downloadFreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.gz
FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.tar.bz2
FreeFileSync-a034cfca98d4408b175938740628a54f57eb7614.zip
add upstream 11.2811.28
Diffstat (limited to 'zen/serialize.h')
-rw-r--r--zen/serialize.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/serialize.h b/zen/serialize.h
index 53a6fc62..dd393422 100644
--- a/zen/serialize.h
+++ b/zen/serialize.h
@@ -79,7 +79,7 @@ template < class BufferedInputStream> void readArray (BufferedInputSt
struct IOCallbackDivider
{
IOCallbackDivider(const IoCallback& notifyUnbufferedIO, int64_t& totalBytesNotified) :
- totalBytesNotified_(totalBytesNotified),
+ totalBytesNotified_(totalBytesNotified),
notifyUnbufferedIO_(notifyUnbufferedIO) { assert(totalBytesNotified == 0); }
void operator()(int64_t bytesDelta) //throw X!
bgstack15