diff options
author | nplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-21 12:43:08 +0000 |
---|---|---|
committer | nplourde <nplourde@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-10-21 12:43:08 +0000 |
commit | 38db6b3876a54e1a537cb4fe3597a1b40d57bef0 (patch) | |
tree | 3827d35e0e353202874ebc83b4b06363b2d28eab | |
parent | c68662a8c773da009d06ec4a1ae89c99fe5f20ed (diff) |
fixed typo
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13723 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_quartz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libvo/vo_quartz.c b/libvo/vo_quartz.c index dcb3dbb17f..a1d77258be 100644 --- a/libvo/vo_quartz.c +++ b/libvo/vo_quartz.c @@ -305,8 +305,8 @@ static OSStatus MainWindowEventHandler(EventHandlerCallRef nextHandler, EventRef static OSStatus MainWindowCommandHandler(EventHandlerCallRef nextHandler, EventRef event, void *userData) { OSStatus result = noErr; - UInt32_t d_width; - UInt32_t d_height; + uint32_t d_width; + uint32_t d_height; UInt32 class = GetEventClass (event); UInt32 kind = GetEventKind (event); |