From fd55cb324d6d260a3e3ce02ee0801c1ff18f10fa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 8 Feb 2014 21:01:32 +0100 Subject: [PATCH] id3v2mux: Fix another compiler warning --- ext/taglib/gstid3v2mux.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/taglib/gstid3v2mux.cc b/ext/taglib/gstid3v2mux.cc index f47c31e..8651e77 100644 --- a/ext/taglib/gstid3v2mux.cc +++ b/ext/taglib/gstid3v2mux.cc @@ -461,7 +461,7 @@ add_image_tag (ID3v2::Tag * id3v2tag, const GstTagList * list, if (strcmp (tag, GST_TAG_PREVIEW_IMAGE) == 0) { frame->setType (ID3v2::AttachedPictureFrame::FileIcon); } else { - int image_type = image_type = ID3v2::AttachedPictureFrame::Other; + int image_type = ID3v2::AttachedPictureFrame::Other; if (info_struct) { if (gst_structure_get (info_struct, "image-type", -- 2.7.4