diff options
author | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-04-01 21:59:54 +0000 |
---|---|---|
committer | uau <uau@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-04-01 21:59:54 +0000 |
commit | 208d4343ef9689e3b7e3e4ce81cae9987560d7fe (patch) | |
tree | e05c309e46d8d78d61fdcf985255e893d5d2554f /libvo/vo_x11.c | |
parent | c40c5b480f10490f1529eb0550c42536c7943bcf (diff) | |
download | mpv-208d4343ef9689e3b7e3e4ce81cae9987560d7fe.tar.bz2 mpv-208d4343ef9689e3b7e3e4ce81cae9987560d7fe.tar.xz |
"()" to "(void)" function param list fixes
patch from Stefan Huehner, stefan huehner org
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22904 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_x11.c')
-rw-r--r-- | libvo/vo_x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/vo_x11.c b/libvo/vo_x11.c index f94d5c9c30..05b6efc7e6 100644 --- a/libvo/vo_x11.c +++ b/libvo/vo_x11.c @@ -93,7 +93,7 @@ static int aspect; // 1<<16 based fixed point aspect, so that the a static int old_vo_dwidth = -1; static int old_vo_dheight = -1; -static void check_events() +static void check_events(void) { int ret = vo_x11_check_events(mDisplay); |