Skip to content
Snippets Groups Projects
Commit 53cafac0 authored by Philip Gladstone's avatar Philip Gladstone
Browse files

* Add default cases to switch statements.

Originally committed as revision 460 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6d9872f4
Branches
Tags
No related merge requests found
...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment