summaryrefslogtreecommitdiff
path: root/ext/hls/m3u8.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2016-11-28 10:49:23 +0200
committerSebastian Dröge <sebastian@centricular.com>2016-11-28 10:49:23 +0200
commit674efaadd92b22a81fc7a3e38a2db10c9bb4d5bb (patch)
tree46531175d23c76ab988884ca6cfdbe2e687913df /ext/hls/m3u8.c
parentb0a6b5eac8a268c1255de8d339017293fe80560d (diff)
downloadgstreamer-plugins-bad-674efaadd92b22a81fc7a3e38a2db10c9bb4d5bb.tar.gz
m3u8: Mark uri_join() function as static
We don't really want to export this, especially not without any namespacing. This can cause problems for static builds.
Diffstat (limited to 'ext/hls/m3u8.c')
-rw-r--r--ext/hls/m3u8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hls/m3u8.c b/ext/hls/m3u8.c
index 2f22c13bc..788743f68 100644
--- a/ext/hls/m3u8.c
+++ b/ext/hls/m3u8.c
@@ -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)