diff --git a/src/ChangeLog b/src/ChangeLog index 6dfe1fbe2..94b691687 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 diff --git a/src/filegui.c b/src/filegui.c index b6d3345da..9d79b7e86 100644 --- a/src/filegui.c +++ b/src/filegui.c @@ -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;