diff options
author | 2003-06-19 18:26:13 +0000 | |
---|---|---|
committer | 2003-06-19 18:26:13 +0000 | |
commit | 3f758ed442517bececebbc627e2e3da03b419451 (patch) | |
tree | 46900057a5a9b8d4b420971d7aae620697116dae | |
parent | 5e9a874557e0d82385ab53cc50702b30f26988f2 (diff) |
small warning fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10312 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpcodecs/vf_expand.c | 1 | ||||
-rw-r--r-- | libvo/x11_common.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/libmpcodecs/vf_expand.c b/libmpcodecs/vf_expand.c index 06b4feaa24..e4d722c5f8 100644 --- a/libmpcodecs/vf_expand.c +++ b/libmpcodecs/vf_expand.c @@ -31,7 +31,6 @@ static struct vf_priv_s { } vf_priv_dflt = { -1,-1, -1,-1, - NULL, 0, NULL }; diff --git a/libvo/x11_common.c b/libvo/x11_common.c index 265dc00814..682d295290 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -414,7 +414,7 @@ void vo_x11_putkey_ext(int keysym){ case XF86XK_AudioStop: mplayer_put_key(KEY_XF86_STOP); break; case XF86XK_AudioPrev: mplayer_put_key(KEY_XF86_PREV); break; case XF86XK_AudioNext: mplayer_put_key(KEY_XF86_NEXT); break; - default: + default: break; } } #endif |