mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-18 13:25:56 +00:00
xmptag: fix compiler warning in release mode
Fix compiler warning caused by g_assert_not_reached() being skipped because releases are compiled with -DG_DISABLE_ASSERT. https://bugzilla.gnome.org/show_bug.cgi?id=656264
This commit is contained in:
parent
5629ed74b3
commit
2d1ffa68a9
1 changed files with 1 additions and 0 deletions
|
@ -175,6 +175,7 @@ xmp_tag_type_get_name (GstXmpTagType tagtype)
|
|||
default:
|
||||
g_assert_not_reached ();
|
||||
}
|
||||
return NULL; /* make compiler happy with -DG_DISABLE_ASSERT */
|
||||
}
|
||||
|
||||
struct _PendingXmpTag
|
||||
|
|
Loading…
Reference in a new issue