Skip to content

Commit

Permalink
SDL_string.c (SDL_vsscanf): fix gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
sezero committed Dec 5, 2023
1 parent f00ecf5 commit e482f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib/SDL_string.c
Original file line number Diff line number Diff line change
@@ -1255,7 +1255,7 @@ static SDL_bool CharacterMatchesSet(char c, const char *set, size_t set_len)
}

/* NOLINTNEXTLINE(readability-non-const-parameter) */
int SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap) SDL_SCANF_VARARG_FUNCV(2)
int SDL_vsscanf(const char *text, SDL_SCANF_FORMAT_STRING const char *fmt, va_list ap)
{
int retval = 0;

0 comments on commit e482f00

Please sign in to comment.