Skip to content

Commit

Permalink
Removed unused variable in extras/ignorecase.c ...
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 6, 2016
1 parent 2777b5e commit 468edd8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions extras/ignorecase.c
Expand Up @@ -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. */

Expand Down

0 comments on commit 468edd8

Please sign in to comment.