* fileopctx.c: Removed unnecessary function casts.

This commit is contained in:
Roland Illig 2005-05-23 11:30:07 +00:00
parent b8438197e1
commit cbcdeeefbf
2 changed files with 2 additions and 1 deletions

View File

@ -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 <proski@gnu.org>

View File

@ -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;