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:
parent
6d9872f416
commit
53cafac09c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user