Fixed some compiler warnings that Visual Studio reported.

This commit is contained in:
Ryan C. Gordon 2013-07-20 19:51:51 -04:00
parent 8328f33947
commit 30b6bedb57
5 changed files with 6 additions and 6 deletions

View file

@ -1350,7 +1350,7 @@ SDL_PrintUnsignedLongLong(char *text, size_t maxlen, SDL_FormatInfo *info, Uint6
static size_t
SDL_PrintFloat(char *text, size_t maxlen, SDL_FormatInfo *info, double arg)
{
int i, width;
int width;
size_t len;
size_t left = maxlen;
char *textstart = text;