Fixed some warnings building for 64-bit Windows

This commit is contained in:
Sam Lantinga
2013-10-21 01:16:16 -07:00
parent 11d38d696e
commit b8b9bfbe5b
4 changed files with 6 additions and 5 deletions

View File

@@ -830,7 +830,7 @@ SDL_JoystickGUID SDL_JoystickGetGUIDFromString(const char *pchGUID)
{
SDL_JoystickGUID guid;
int maxoutputbytes= sizeof(guid);
int len = SDL_strlen( pchGUID );
size_t len = SDL_strlen( pchGUID );
Uint8 *p;
int i;