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 2f20ba90fd
commit 1e0b270ab6
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
2006-05-05 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Andres Salomon <dilinger at debian org>
* ext/lame/gstlame.c: (gst_lame_sink_event):
Fix typo (comma vs. semicolon) (#340710).
2006-05-04 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Lutz Müller <lutz at topfrose de>

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 ();