From: Sebastian Dröge Date: Sun, 30 Aug 2009 20:13:26 +0000 (+0200) Subject: id3tag: Unconditionally use GLib 2.16 API X-Git-Tag: 1.19.3~507^2~18250 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b7534074e2217cd2eb5b8310b9123dc459c63ac9;p=platform%2Fupstream%2Fgstreamer.git id3tag: Unconditionally use GLib 2.16 API --- diff --git a/gst/id3tag/id3tag.c b/gst/id3tag/id3tag.c index dd7bb04..43c7635 100644 --- a/gst/id3tag/id3tag.c +++ b/gst/id3tag/id3tag.c @@ -103,9 +103,7 @@ gst_byte_writer_copy_bytes (GstByteWriter * w, guint8 * dest, guint offset, if (size == -1) size = length - offset; -#if GLIB_CHECK_VERSION(2,16,0) g_warn_if_fail (length >= (offset + size)); -#endif memcpy (dest, w->str + offset, MIN (size, length - offset)); }