1
0
Fork 0

(svn r19000) -Cleanup: remove redundant check

release/1.0
smatz 2010-02-04 00:40:11 +00:00
parent 68b908a27c
commit 2b8f7f2078
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ char *FioFindFullPath(char *buf, size_t buflen, Subdirectory subdir, const char
/* Be, as opening files, aware that sometimes the filename
* might be in uppercase when it is in lowercase on the
* disk. Ofcourse Windows doesn't care about casing. */
strtolower(buf + ((subdir == NO_DIRECTORY) ? 0 : strlen(_searchpaths[sp]) - 1));
strtolower(buf + strlen(_searchpaths[sp]) - 1);
if (FileExists(buf)) break;
#endif
}