summaryrefslogtreecommitdiff
path: root/zen/file_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_access.h')
-rw-r--r--zen/file_access.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_access.h b/zen/file_access.h
index ec5bda66..026027e7 100644
--- a/zen/file_access.h
+++ b/zen/file_access.h
@@ -63,7 +63,7 @@ struct InSyncAttributes
InSyncAttributes copyNewFile(const Zstring& sourceFile, const Zstring& targetFile, bool copyFilePermissions, //throw FileError, ErrorTargetExisting, ErrorFileLocked
//accummulated delta != file size! consider ADS, sparse, compressed files
- const std::function<void(std::int64_t bytesDelta)>& onUpdateCopyStatus); //may be nullptr; throw X!
+ const std::function<void(std::int64_t bytesDelta)>& notifyProgress); //may be nullptr; throw X!
}
#endif //FILE_ACCESS_H_8017341345614857
bgstack15