summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-02-14 17:11:19 +0100
committerMathieu Duponchelle <mathieu@centricular.com>2018-02-14 17:16:09 +0100
commitf9cb7cffa89a17b086851f32631f7f489f49d0f3 (patch)
tree699c01edc907eb167319f20895e75ad69bb3fd5b
parent9a535be2b935e732dbb6f94ce78527fe1c8bf514 (diff)
session-pool: remove nullable return annotation
create_watch can only return NULL from the API guards, no need for nullable.
-rw-r--r--gst/rtsp-server/rtsp-session-pool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtsp-server/rtsp-session-pool.c b/gst/rtsp-server/rtsp-session-pool.c
index 9ab2d27..3915b8c 100644
--- a/gst/rtsp-server/rtsp-session-pool.c
+++ b/gst/rtsp-server/rtsp-session-pool.c
@@ -751,7 +751,7 @@ static GSourceFuncs gst_pool_source_funcs = {
* Create a #GSource that will be dispatched when the session should be cleaned
* up.
*
- * Returns: (transfer full) (nullable): a #GSource
+ * Returns: (transfer full): a #GSource
*/
GSource *
gst_rtsp_session_pool_create_watch (GstRTSPSessionPool * pool)