ext/lame/gstlame.c: Fix typo (comma vs. semicolon) (#340710).

Original commit message from CVS:
Patch by: Andres Salomon  <dilinger at debian org>
* ext/lame/gstlame.c: (gst_lame_sink_event):
Fix typo (comma vs. semicolon) (#340710).
This commit is contained in:
Andres Salomon 2006-05-05 08:23:39 +00:00 committed by Tim-Philipp Müller
parent c9c991563e
commit 4dba1fe993

View file

@ -999,8 +999,8 @@ gst_lame_sink_event (GstPad * pad, GstEvent * event)
if (lame->tags) {
GstTagList *taglist;
gst_event_parse_tag (event, &taglist),
gst_tag_list_insert (lame->tags, taglist,
gst_event_parse_tag (event, &taglist);
gst_tag_list_insert (lame->tags, taglist,
gst_tag_setter_get_tag_merge_mode (GST_TAG_SETTER (lame)));
} else {
g_assert_not_reached ();