Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register

Original commit message from CVS:
Fix error in my previous commit - NULL was accidentily removed, leading to a segfault in gst-register
This commit is contained in:
Ronald S. Bultje 2003-12-21 22:13:42 +00:00
parent 1835d5eb9c
commit 2309d726b7

View file

@ -64,7 +64,8 @@ mp3_sink_factory (void)
"mp3parse_sink",
"audio/mpeg",
"mpegversion", GST_PROPS_INT (1)
)
),
NULL
);
};