diff options
author | Josep Torra <n770galaxy@gmail.com> | 2009-10-09 12:14:22 +0200 |
---|---|---|
committer | Josep Torra <n770galaxy@gmail.com> | 2009-10-09 12:14:22 +0200 |
commit | 3f7aed54f9bd4e0a8a1293a318735c499b7f6ec0 (patch) | |
tree | 94ed758a4bc26811e6e04806619b823cb389ca48 /sys | |
parent | b3e5dcc5f7300ab07799d5a74d32c10959d8dcc7 (diff) |
osxvideo: fix a warning doing a cast
Diffstat (limited to 'sys')
-rw-r--r-- | sys/osxvideo/cocoawindow.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/osxvideo/cocoawindow.m b/sys/osxvideo/cocoawindow.m index 9023e2d4..70f8d66a 100644 --- a/sys/osxvideo/cocoawindow.m +++ b/sys/osxvideo/cocoawindow.m @@ -85,7 +85,7 @@ - (void) sendEvent:(NSEvent *) event { BOOL taken = NO; - GST_DEBUG ("event %p type:%d", event,[event type]); + GST_DEBUG ("event %p type:%d", event,(gint)[event type]); if ([event type] == NSKeyDown) { } |