Skip to content

Commit

Permalink
fixed -Werror=shadow after commit (thanks @sezero!)
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Feb 22, 2024
1 parent caec3dc commit dc3ecf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/showimage.c
Expand Up @@ -185,10 +185,11 @@ int main(int argc, char *argv[])
}
if (result < 0) {
SDL_Log("Couldn't save %s: %s\n", saveFile, SDL_GetError());
result = 3;
}
} else {
result = 3;
SDL_Log("Couldn't load %s: %s\n", argv[i], SDL_GetError());
result = 3;
}
}

Expand Down

0 comments on commit dc3ecf9

Please sign in to comment.