diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-20 04:00:25 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-05-20 04:00:25 +0000 |
commit | d07b369a494199ce54670b3d7a306bc9ca17a334 (patch) | |
tree | d6b1efc718a2720ea7dfed1380bb8133a232d1e0 /libvo/x11_common.c | |
parent | 46914c149841e3aa82c7ef5b38988a9d7ec6cb00 (diff) | |
download | mpv-d07b369a494199ce54670b3d7a306bc9ca17a334.tar.bz2 mpv-d07b369a494199ce54670b3d7a306bc9ca17a334.tar.xz |
64bit incompatibility bug, patch by Artur Grabowski <art@blahonga.org>
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6141 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/x11_common.c')
-rw-r--r-- | libvo/x11_common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libvo/x11_common.c b/libvo/x11_common.c index a572560e6c..b69d8d3c78 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -594,10 +594,11 @@ int vo_x11_check_events(Display *mydisplay){ { Window root; int foo; + Window win; XGetGeometry(mydisplay, vo_window, &root, &foo, &foo, &foo/*width*/, &foo/*height*/, &foo, &foo); XTranslateCoordinates(mydisplay, vo_window, root, 0, 0, - &vo_dx, &vo_dy, (Window *)&foo); + &vo_dx, &vo_dy, &win); } #endif ret|=VO_EVENT_RESIZE; |