diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xstat.c')
-rw-r--r-- | Build/source/texk/kpathsea/xstat.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/xstat.c b/Build/source/texk/kpathsea/xstat.c index 17a3992c0dd..226ca62e983 100644 --- a/Build/source/texk/kpathsea/xstat.c +++ b/Build/source/texk/kpathsea/xstat.c @@ -25,10 +25,10 @@ struct stat xstat (const_string path) { struct stat s; - + if (stat(path, &s) != 0) FATAL_PERROR(path); - + return s; } @@ -46,9 +46,9 @@ struct stat xlstat (const_string path) { struct stat s; - + if (lstat(path, &s) != 0) - FATAL_PERROR(path); + FATAL_PERROR(path); return s; } #endif |