Fix unused variable

This commit is contained in:
Linus Dierheimer
2022-09-06 14:23:07 +02:00
parent 282271a65a
commit 7fd98829b0
+1 -1
View File
@@ -93,7 +93,7 @@ static void printFoldersAutodetection(FFinstance* instance)
#ifndef __APPLE__
struct statvfs fsHome;
int homeRet = statvfs(FASTFETCH_TARGET_DIR_HOME, &fsHome);
bool printHome = rootRet == 0 && (fsRoot.f_fsid != fsHome.f_fsid);
bool printHome = homeRet == 0 && (fsRoot.f_fsid != fsHome.f_fsid);
#else
bool printHome = false;
#endif // !__APPLE__