Skip to content

Commit

Permalink
Fixed compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jun 21, 2014
1 parent ce84813 commit 8ef5651
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/cocoa/SDL_cocoamessagebox.m
Expand Up @@ -132,7 +132,7 @@ - (void) alertDidEnd:(NSAlert *)alert returnCode:(NSInteger)returnCode contextIn
}
else
{
returnValue = SDL_SetError("Did not get a valid `clicked button' id: %d", clicked);
returnValue = SDL_SetError("Did not get a valid `clicked button' id: %ld", (long)clicked);
}

[pool release];
Expand Down

0 comments on commit 8ef5651

Please sign in to comment.