Commit ec5e765d authored by Sam Lantinga's avatar Sam Lantinga

Fixed warnings on iOS

parent f7c2849e
...@@ -258,7 +258,7 @@ SDL_LogMessageV(int category, SDL_LogPriority priority, const char *fmt, va_list ...@@ -258,7 +258,7 @@ SDL_LogMessageV(int category, SDL_LogPriority priority, const char *fmt, va_list
} }
/* Make sure we don't exceed array bounds */ /* Make sure we don't exceed array bounds */
if (priority < 0 || priority >= SDL_NUM_LOG_PRIORITIES) { if ((int)priority < 0 || priority >= SDL_NUM_LOG_PRIORITIES) {
return; return;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment