m3u8: Mark uri_join() function as static
authorSebastian Dröge <sebastian@centricular.com>
Mon, 28 Nov 2016 08:49:23 +0000 (10:49 +0200)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 28 Nov 2016 08:49:23 +0000 (10:49 +0200)
We don't really want to export this, especially not without any
namespacing. This can cause problems for static builds.

ext/hls/m3u8.c

index 2f22c13..788743f 100644 (file)
@@ -33,7 +33,7 @@
 
 static GstM3U8MediaFile *gst_m3u8_media_file_new (gchar * uri,
     gchar * title, GstClockTime duration, guint sequence);
-gchar *uri_join (const gchar * uri, const gchar * path);
+static gchar *uri_join (const gchar * uri, const gchar * path);
 
 GstM3U8 *
 gst_m3u8_new (void)