summaryrefslogtreecommitdiff
path: root/lib/parallel_scan.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/parallel_scan.h')
-rw-r--r--lib/parallel_scan.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/parallel_scan.h b/lib/parallel_scan.h
index c3806373..408882bf 100644
--- a/lib/parallel_scan.h
+++ b/lib/parallel_scan.h
@@ -61,8 +61,8 @@ public:
ON_ERROR_RETRY,
ON_ERROR_IGNORE
};
- virtual HandleError reportError (const std::wstring& msg) = 0; //may throw!
- virtual void reportStatus(const std::wstring& msg, int itemsTotal) = 0; //
+ virtual HandleError reportError (const std::wstring& msg, size_t retryNumber) = 0; //may throw!
+ virtual void reportStatus(const std::wstring& msg, int itemsTotal ) = 0; //
};
//attention: ensure directory filtering is applied later to exclude filtered directories which have been kept as parent folders
bgstack15