1
mirror of https://github.com/mpv-player/mpv synced 2024-07-31 16:29:58 +02:00

Avoid warning:

vf_detc.c:273: warning: ‘dropflag’ may be used uninitialized in this function


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25795 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-01-19 11:44:49 +00:00
parent e5fc538ba5
commit d540495b6a

View File

@ -273,7 +273,7 @@ static int do_put_image(struct vf_instance_s* vf, mp_image_t *dmpi)
int dropflag;
switch (p->drop) {
case 0:
default:
dropflag = 0;
break;
case 1: