1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

* Add default cases to switch statements.

Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Philip Gladstone 2002-05-09 01:16:08 +00:00
parent 6d9872f416
commit 53cafac09c

View File

@ -247,6 +247,8 @@ static int avi_write_header(AVFormatContext *s)
put_le32(pb, 0);
put_le32(pb, 0);
break;
default:
abort();
}
end_tag(pb, strh);
@ -261,6 +263,8 @@ static int avi_write_header(AVFormatContext *s)
return -1;
}
break;
default:
abort();
}
end_tag(pb, strf);
end_tag(pb, list2);