summaryrefslogtreecommitdiffstats
path: root/libhb/muxcommon.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2009-05-04 15:43:35 +0000
committerjstebbins <[email protected]>2009-05-04 15:43:35 +0000
commit3d687432603f2c1905c5f10de0a7a8144806ef9a (patch)
treeab240c8d6473049d9dd2cc303176392e162028ad /libhb/muxcommon.c
parent13cb29614cdd0dd317b82548fa712a2e26852632 (diff)
fix mkv muxing. eddyg forgot to add a break in a switch he modified.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2378 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/muxcommon.c')
-rw-r--r--libhb/muxcommon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/muxcommon.c b/libhb/muxcommon.c
index 30536dd00..b64ebff85 100644
--- a/libhb/muxcommon.c
+++ b/libhb/muxcommon.c
@@ -236,6 +236,7 @@ static void MuxerFunc( void * _mux )
break;
case HB_MUX_MKV:
m = hb_mux_mkv_init( job );
+ break;
default:
hb_error( "No muxer selected, exiting" );
*job->die = 1;