* gfind.c (find_file): Add missing break.

This commit is contained in:
Pavel Roskin 2001-07-27 23:29:41 +00:00
parent bfc98d29d7
commit 33fdf19ded
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2001-07-27 Pavel Roskin <proski@gnu.org> 2001-07-27 Pavel Roskin <proski@gnu.org>
* gfind.c (find_file): Add missing break.
* gdesktop.c (desktop_create_url): Accept new parameter * gdesktop.c (desktop_create_url): Accept new parameter
is_template. Use mc_mkstemps() is it's TRUE. Change all is_template. Use mc_mkstemps() is it's TRUE. Change all
callers. callers.

View File

@ -865,8 +865,10 @@ find_file(char *start_dir, char *pattern, char *content, char **dirname,
*dirname = g_strdup(dir_tmp); *dirname = g_strdup(dir_tmp);
if (file_tmp) if (file_tmp)
*filename = g_strdup(file_tmp); *filename = g_strdup(file_tmp);
break;
case B_PANELIZE: case B_PANELIZE:
find_panelize(head, start_dir); find_panelize(head, start_dir);
break;
} }
kill_gui(head); kill_gui(head);