Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed another infinite recursion accident in stdlib.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 5, 2013
1 parent 3371422 commit f748780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stdlib/SDL_string.c
Expand Up @@ -923,7 +923,7 @@ SDL_strncmp(const char *str1, const char *str2, size_t maxlen)

#ifdef SDL_strcasecmp
#undef SDL_strcasecmp
int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp(str1, str2); }
int SDL_strcasecmp(const char *str1, const char *str2) { return SDL_strcasecmp_inline(str1, str2); }
#else
int
SDL_strcasecmp(const char *str1, const char *str2)
Expand Down

0 comments on commit f748780

Please sign in to comment.