Skip to content

Commit

Permalink
Fixed signed/unsigned warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Nov 9, 2013
1 parent 550676d commit 33cf925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/joystick/SDL_joystick.c
Expand Up @@ -832,7 +832,7 @@ SDL_JoystickGUID SDL_JoystickGetGUIDFromString(const char *pchGUID)
int maxoutputbytes= sizeof(guid);
size_t len = SDL_strlen( pchGUID );
Uint8 *p;
int i;
size_t i;

/* Make sure it's even */
len = ( len ) & ~0x1;
Expand Down

0 comments on commit 33cf925

Please sign in to comment.