mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-22 03:02:06 +03:00
(do_find): fix coding style.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
6f7b4131c6
commit
44e4b7f8b9
@ -1802,12 +1802,12 @@ do_find (WPanel * panel, const char *start_dir, ssize_t start_dir_len, const cha
|
||||
|
||||
get_list_info (&file_tmp, &dir_tmp, NULL, NULL);
|
||||
|
||||
if (dir_tmp)
|
||||
if (dir_tmp != NULL)
|
||||
*dirname = g_strdup (dir_tmp);
|
||||
if (file_tmp)
|
||||
if (file_tmp != NULL)
|
||||
*filename = g_strdup (file_tmp);
|
||||
|
||||
if (return_value == B_PANELIZE && *filename)
|
||||
if (return_value == B_PANELIZE && *filename != NULL)
|
||||
{
|
||||
struct stat st;
|
||||
GList *entry;
|
||||
|
Loading…
Reference in New Issue
Block a user