From f748780a342c421d4e3f33af2fa03c9464c4a7e8 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 5 Apr 2013 16:34:59 -0400 Subject: [PATCH] Fixed another infinite recursion accident in stdlib. --- src/stdlib/SDL_string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stdlib/SDL_string.c b/src/stdlib/SDL_string.c index da7290600..da02d8b09 100644 --- a/src/stdlib/SDL_string.c +++ b/src/stdlib/SDL_string.c @@ -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)