1
1

* filegui.c: Removed unnecessary function casts.

Этот коммит содержится в:
Roland Illig 2005-05-23 11:29:03 +00:00
родитель 12641d520f
Коммит b8438197e1
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

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

Просмотреть файл

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