diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-04-24 15:38:44 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-04-24 15:38:44 +0200 |
commit | 631e93a642d3f4aacd6ab4ca2c1b5f61314f93f4 (patch) | |
tree | dfcc6f83f95a3884c213f601807f9c9ed0d1dcd9 /gnl | |
parent | ba617556d182d4fd107d62e8f16852e85022f6f5 (diff) |
gnlcomposition: Use correct enum type
Diffstat (limited to 'gnl')
-rw-r--r-- | gnl/gnlcomposition.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnl/gnlcomposition.c b/gnl/gnlcomposition.c index d29b2f4..ae21807 100644 --- a/gnl/gnlcomposition.c +++ b/gnl/gnlcomposition.c @@ -845,7 +845,7 @@ get_new_seek_event (GnlComposition * comp, gboolean initial, GST_DEBUG_OBJECT (comp, "initial:%d", initial); /* remove the seek flag */ if (!(initial)) - flags = priv->segment->flags; + flags = (GstSeekFlags) priv->segment->flags; else flags = GST_SEEK_FLAG_ACCURATE | GST_SEEK_FLAG_FLUSH; |