* filegui.c: Removed unnecessary function casts.

This commit is contained in:
Roland Illig 2005-05-23 11:29:03 +00:00
parent 12641d520f
commit b8438197e1
2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@
* util.c: Likewise.
* find.c: Removed a function cast by using the wrapper function
cstrstr().
* filegui.c: Removed unnecessary function casts.
2005-05-22 Pavel Roskin <proski@gnu.org>

View File

@ -909,9 +909,9 @@ file_mask_dialog (FileOpContext *ctx, FileOperation operation, const char *text,
g_free (def_text_secure);
if (ctx->follow_links)
ctx->stat_func = (mc_stat_fn) mc_stat;
ctx->stat_func = mc_stat;
else
ctx->stat_func = (mc_stat_fn) mc_lstat;
ctx->stat_func = mc_lstat;
if (ctx->op_preserve) {
ctx->preserve = 1;