summaryrefslogtreecommitdiff
path: root/source/files.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2009-05-29 21:32:02 +0000
committerAndrey Nazarov <skuller@skuller.net>2009-05-29 21:32:02 +0000
commit3ef036028a652f979a4197dd4a2ddd779e437597 (patch)
tree42c11d1e5396509e41d3776b80eaca3660a998db /source/files.c
parent454fc2e2eb975e359696850f07c071aa0736aac7 (diff)
Ran all source files through expand(1).
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 );