SDL_syspower: remove dead store warning

Value stored to 'str' during its initialization is never read
Sylvain Becker 2019-10-30 14:26:18 +01:00
parent 42153342ab
commit ff0d9245a9
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ static SDL_bool
next_string(char **_ptr, char **_str)
{
char *ptr = *_ptr;
char *str = *_str;
char *str;
while (*ptr == ' ') { /* skip any spaces... */
ptr++;