summaryrefslogtreecommitdiff
path: root/source/files.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/files.c')
-rw-r--r--source/files.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/files.c b/source/files.c
index 8ea2c4b..7783575 100644
--- a/source/files.c
+++ b/source/files.c
@@ -191,8 +191,8 @@ int FS_pathcmpn( const char *s1, const char *s2, size_t n ) {
c1 = *s1++;
c2 = *s2++;
- if( !n-- )
- return 0; /* strings are equal until end point */
+ if( !n-- )
+ return 0; /* strings are equal until end point */
if( c1 != c2 ) {
c1 = c1 == '\\' ? '/' : Q_tolower( c1 );