mirror of
https://github.com/transmission/transmission
synced 2024-12-28 10:38:45 +00:00
code style
This commit is contained in:
parent
ddca909699
commit
4833723651
1 changed files with 2 additions and 1 deletions
|
@ -2122,7 +2122,8 @@ static void removeEmptyFoldersAndJunkFiles(char const* folder)
|
|||
auto const filename = tr_strvPath(folder, name);
|
||||
|
||||
auto info = tr_sys_path_info{};
|
||||
if (tr_sys_path_get_info(filename.c_str(), TR_SYS_PATH_NO_FOLLOW, &info, nullptr) && info.type == TR_SYS_PATH_IS_DIRECTORY)
|
||||
if (tr_sys_path_get_info(filename.c_str(), TR_SYS_PATH_NO_FOLLOW, &info, nullptr) &&
|
||||
info.type == TR_SYS_PATH_IS_DIRECTORY)
|
||||
{
|
||||
removeEmptyFoldersAndJunkFiles(filename.c_str());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue