Commit b920d8fa authored by philipjsg's avatar philipjsg

* Add default cases to switch statements.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@460 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1b68b6d1
...@@ -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