Skip to content

Commit

Permalink
fixup! Calculate pauses in file operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
aborodin committed Nov 12, 2024
1 parent b47d4bf commit 3a47a0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/filemanager/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/* --------------------------------------------------------------------------------------------- */
Expand Down

0 comments on commit 3a47a0f

Please sign in to comment.