diff options
Diffstat (limited to 'src/port/path.c')
-rw-r--r-- | src/port/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/port/path.c b/src/port/path.c index a841ef4f95..4611b58edb 100644 --- a/src/port/path.c +++ b/src/port/path.c @@ -432,7 +432,7 @@ dir_strcmp(const char *s1, const char *s2) #ifndef WIN32 *s1 != *s2 #else - /* On windows, paths are case-insensitive */ + /* On windows, paths are case-insensitive */ pg_tolower((unsigned char) *s1) != pg_tolower((unsigned char) *s2) #endif && !(IS_DIR_SEP(*s1) && IS_DIR_SEP(*s2))) |