From fee144bca55bce119726b21b2f1071fa98c473c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Sat, 22 Oct 2022 18:34:14 +0300 Subject: [PATCH] net: Add missing nullable annotation on the name parameter in the net/NTP clock constructors Part-of: --- subprojects/gstreamer/libs/gst/net/gstnetclientclock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gstreamer/libs/gst/net/gstnetclientclock.c b/subprojects/gstreamer/libs/gst/net/gstnetclientclock.c index 62d840d..6c55f0a 100644 --- a/subprojects/gstreamer/libs/gst/net/gstnetclientclock.c +++ b/subprojects/gstreamer/libs/gst/net/gstnetclientclock.c @@ -1426,7 +1426,7 @@ gst_net_client_clock_get_internal_time (GstClock * clock) /** * gst_net_client_clock_new: - * @name: a name for the clock + * @name: (nullable): a name for the clock * @remote_address: the address or hostname of the remote clock provider * @remote_port: the port of the remote clock provider * @base_time: initial time of the clock @@ -1474,7 +1474,7 @@ gst_ntp_clock_init (GstNtpClock * self) /** * gst_ntp_clock_new: - * @name: a name for the clock + * @name: (nullable): a name for the clock * @remote_address: the address or hostname of the remote clock provider * @remote_port: the port of the remote clock provider * @base_time: initial time of the clock -- 2.7.4