mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +00:00
rtspconnection: Fix broken build on GLib 2.59.0
GPollableReturn enum was introduced after GLib 2.59.0 release.
This commit is contained in:
parent
57aba8952d
commit
a86fc3da46
1 changed files with 1 additions and 1 deletions
|
@ -1250,7 +1250,7 @@ error:
|
|||
}
|
||||
|
||||
/* NOTE: This changes the values of vectors if multiple iterations are needed! */
|
||||
#if GLIB_CHECK_VERSION(2, 59, 0)
|
||||
#if GLIB_CHECK_VERSION(2, 59, 1)
|
||||
static GstRTSPResult
|
||||
writev_bytes (GOutputStream * stream, GOutputVector * vectors, gint n_vectors,
|
||||
gsize * bytes_written, gboolean block, GCancellable * cancellable)
|
||||
|
|
Loading…
Reference in a new issue