diff --git a/src/ChangeLog b/src/ChangeLog index 94b691687..95c9b16bf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -8,6 +8,7 @@ * find.c: Removed a function cast by using the wrapper function cstrstr(). * filegui.c: Removed unnecessary function casts. + * fileopctx.c: Likewise. 2005-05-22 Pavel Roskin diff --git a/src/fileopctx.c b/src/fileopctx.c index 5f8240f6a..40fc9ff57 100644 --- a/src/fileopctx.c +++ b/src/fileopctx.c @@ -47,7 +47,7 @@ file_op_context_new (FileOperation op) ctx->progress_bytes = 0.0; ctx->op_preserve = TRUE; ctx->do_reget = TRUE; - ctx->stat_func = (mc_stat_fn) mc_lstat; + ctx->stat_func = mc_lstat; ctx->preserve = TRUE; ctx->preserve_uidgid = (geteuid () == 0) ? TRUE : FALSE; ctx->umask_kill = 0777777;