Cleanup: Fix misc styleguide issues

Signed-off-by: Sohaib Mohamed <sohaib.amhmd@gmail.com>
This commit is contained in:
Sohaib Mohamed
2021-11-04 21:40:39 +02:00
committed by BenBE
parent e64269df2c
commit 21cb1c4d59
4 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ int Compat_faccessat(int dirfd,
// Fallback to stat(2)/lstat(2) depending on flags
struct stat statinfo;
if(flags) {
if (flags) {
ret = lstat(pathname, &statinfo);
} else {
ret = stat(pathname, &statinfo);