Commit 53cafac0 authored by Philip Gladstone's avatar Philip Gladstone

* Add default cases to switch statements.

Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6d9872f4
...@@ -247,6 +247,8 @@ static int avi_write_header(AVFormatContext *s) ...@@ -247,6 +247,8 @@ static int avi_write_header(AVFormatContext *s)
put_le32(pb, 0); put_le32(pb, 0);
put_le32(pb, 0); put_le32(pb, 0);
break; break;
default:
abort();
} }
end_tag(pb, strh); end_tag(pb, strh);
...@@ -261,6 +263,8 @@ static int avi_write_header(AVFormatContext *s) ...@@ -261,6 +263,8 @@ static int avi_write_header(AVFormatContext *s)
return -1; return -1;
} }
break; break;
default:
abort();
} }
end_tag(pb, strf); end_tag(pb, strf);
end_tag(pb, list2); end_tag(pb, list2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment