summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/dir.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
commit73d8bb8f989275d57b542a0e7a7b93fed0fee42a (patch)
tree195aa8006f7783234b21c0ee2087c119cecb4c82 /Build/source/texk/kpathsea/dir.c
parent7b6a65e6e41163c0740ea26d6c2696be898e67a3 (diff)
untabify.
git-svn-id: svn://tug.org/texlive/trunk@18285 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/dir.c')
-rw-r--r--Build/source/texk/kpathsea/dir.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/dir.c b/Build/source/texk/kpathsea/dir.c
index 9e3e83fabbd..37a556b343c 100644
--- a/Build/source/texk/kpathsea/dir.c
+++ b/Build/source/texk/kpathsea/dir.c
@@ -30,8 +30,8 @@ boolean
kpathsea_dir_p (kpathsea kpse, const_string fn)
{
/* FIXME : using the stat() replacement in gnuw32,
- we could avoid this win32 specific code. However,
- I wonder if it would be as fast as this one is ?
+ we could avoid this win32 specific code. However,
+ I wonder if it would be as fast as this one is ?
*/
#ifdef WIN32
int fa;
@@ -43,11 +43,11 @@ kpathsea_dir_p (kpathsea kpse, const_string fn)
if (KPATHSEA_DEBUG_P (KPSE_DEBUG_STAT)) {
if (fa == 0xFFFFFFFF) {
fprintf(stderr, "failed to get file attributes for %s (%d)\n",
- fn, (int)(GetLastError()));
+ fn, (int)(GetLastError()));
} else {
fprintf(stderr, "path %s %s a directory\n",
- fn , (fa & FILE_ATTRIBUTE_DIRECTORY) ?
- "is" : "is not");
+ fn , (fa & FILE_ATTRIBUTE_DIRECTORY) ?
+ "is" : "is not");
}
}
#endif /* KPSE_DEBUG */
@@ -144,5 +144,3 @@ dir_links (const_string fn, long nlinks)
return kpathsea_dir_links(kpse_def, fn, nlinks);
}
#endif
-
-