summaryrefslogtreecommitdiff
path: root/src/w32/compat/dirent.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/w32/compat/dirent.c')
-rw-r--r--src/w32/compat/dirent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32/compat/dirent.c b/src/w32/compat/dirent.c
index 7e32e336..41bcba1a 100644
--- a/src/w32/compat/dirent.c
+++ b/src/w32/compat/dirent.c
@@ -96,7 +96,7 @@ closedir(DIR *pDir)
return;
}
- /* close the WINDOWS32 directory handle */
+ /* close the Windows32 directory handle */
if (pDir->dir_hDirHandle != INVALID_HANDLE_VALUE)
FindClose(pDir->dir_hDirHandle);
@@ -159,7 +159,7 @@ rewinddir(DIR* pDir)
return;
}
- /* close the WINDOWS32 directory handle */
+ /* close the Windows32 directory handle */
if (pDir->dir_hDirHandle != INVALID_HANDLE_VALUE)
if (!FindClose(pDir->dir_hDirHandle))
errno = EBADF;