From 3a47a0f9da0b3c211e9fec09ebdcb6581b8f542c Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Tue, 12 Nov 2024 15:11:52 +0300 Subject: [PATCH] fixup! Calculate pauses in file operations. --- src/filemanager/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/filemanager/file.c b/src/filemanager/file.c index 19f9f5930d..3c4a12ceb3 100644 --- a/src/filemanager/file.c +++ b/src/filemanager/file.c @@ -1103,9 +1103,9 @@ query_replace (file_op_context_t *ctx, const char *src, struct stat *src_stat, c /* --------------------------------------------------------------------------------------------- */ static FileProgressStatus -do_file_error (gboolean allow_retry, const char *str) +do_file_error (file_op_context_t *ctx, gboolean allow_retry, const char *str) { - return real_do_file_error (Foreground, allow_retry, str); + return real_do_file_error (ctx, Foreground, allow_retry, str); } /* --------------------------------------------------------------------------------------------- */