summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosep Torra <n770galaxy@gmail.com>2009-10-09 12:14:22 +0200
committerJosep Torra <n770galaxy@gmail.com>2009-10-09 12:14:22 +0200
commit3f7aed54f9bd4e0a8a1293a318735c499b7f6ec0 (patch)
tree94ed758a4bc26811e6e04806619b823cb389ca48
parentb3e5dcc5f7300ab07799d5a74d32c10959d8dcc7 (diff)
osxvideo: fix a warning doing a cast
-rw-r--r--sys/osxvideo/cocoawindow.m2
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) {
}