aboutsummaryrefslogtreecommitdiffstats
path: root/Compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'Compat.c')
-rw-r--r--Compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Compat.c b/Compat.c
index 2d06c48..8c88138 100644
--- a/Compat.c
+++ b/Compat.c
@@ -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);

© 2014-2024 Faster IT GmbH | imprint | privacy policy