Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed a NSLog() format string.
Browse files Browse the repository at this point in the history
Thanks to Mattias Holm for the patch!
  • Loading branch information
icculus committed Sep 2, 2011
1 parent 93677ce commit 1ba27ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/cocoa/SDL_cocoavideo.m
Expand Up @@ -234,7 +234,7 @@
data->trigger_count, (data->trigger_count == 1) ? "" : "s",
data->condition];

NSLog(@"%s", msg);
NSLog(@"%@", msg);

/*
* !!! FIXME: this code needs to deal with fullscreen modes:
Expand Down

0 comments on commit 1ba27ff

Please sign in to comment.