From a6822e98434cf7da6fab033898094976d881ee0f Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Fri, 4 Feb 2022 11:23:02 +0100 Subject: New upstream version 3.1.2 --- Compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Compat.c') 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); -- cgit v1.2.3