diff options
Diffstat (limited to 'Build/source/texk/kpathsea/access.c')
-rw-r--r-- | Build/source/texk/kpathsea/access.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/access.c b/Build/source/texk/kpathsea/access.c index 90a23740005..c1b7cf24f2e 100644 --- a/Build/source/texk/kpathsea/access.c +++ b/Build/source/texk/kpathsea/access.c @@ -77,14 +77,14 @@ Try `%s --help' for more information.\n", argv[0], argv[0]); fprintf(stderr, "%s: Invalid MODE.\n", argv[0]); exit(1); } - + status = access(argv[2], mode); - + /* fail if the access call failed */ if (status != 0) { return 1; } - + /* otherwise, succeed */ return 0; } |