Remove empty statement

This commit is contained in:
Sebastian Ramacher 2020-03-09 13:24:14 +01:00
parent e586178a18
commit 155e538d26

View File

@ -78,7 +78,7 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil
char* tmp = "/";
if (is_dir == true || g_strcmp0(current_path, "/") == 0) {
tmp = "";
};
}
char* full_path = g_strdup_printf("%s%s%s", current_path, tmp, e_name);
g_free(e_name);