Removed unused variable in extras/ignorecase.c ...

This commit is contained in:
Ryan C. Gordon 2016-10-06 15:39:49 -04:00
parent 2777b5efe2
commit 468edd80eb
1 changed files with 1 additions and 2 deletions

View File

@ -89,12 +89,11 @@ int PHYSFSEXT_locateCorrectCase(char *buf)
{
int rc;
char *ptr;
char *prevptr;
while (*buf == '/') /* skip any '/' at start of string... */
buf++;
ptr = prevptr = buf;
ptr = buf;
if (*ptr == '\0')
return 0; /* Uh...I guess that's success. */