From 951dc50d342bda28243638ad12db8a35feebf5fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 6 Mar 2019 19:34:12 +0100 Subject: [PATCH] gstmessage: Fix annotations on details Details argument should be nullable, but the docstring uses a wrong syntax. --- gst/gstmessage.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gstmessage.c b/gst/gstmessage.c index e415e73f21..f72bd62c61 100644 --- a/gst/gstmessage.c +++ b/gst/gstmessage.c @@ -403,7 +403,7 @@ gst_message_new_eos (GstObject * src) * @src: (transfer none) (allow-none): The object originating the message. * @error: (transfer none): The GError for this message. * @debug: A debugging string. - * @details: (transfer full): (allow-none): A GstStructure with details + * @details: (transfer full) (allow-none): A GstStructure with details * * Create a new error message. The message will copy @error and * @debug. This message is posted by element when a fatal event @@ -497,7 +497,7 @@ gst_message_parse_error_details (GstMessage * message, * @src: (transfer none) (allow-none): The object originating the message. * @error: (transfer none): The GError for this message. * @debug: A debugging string. - * @details: (transfer full): (allow-none): A GstStructure with details + * @details: (transfer full) (allow-none): A GstStructure with details * * Create a new warning message. The message will make copies of @error and * @debug. @@ -587,7 +587,7 @@ gst_message_parse_warning_details (GstMessage * message, * @src: (transfer none) (allow-none): The object originating the message. * @error: (transfer none): The GError for this message. * @debug: A debugging string. - * @details: (transfer full): (allow-none): A GstStructure with details + * @details: (transfer full) (allow-none): A GstStructure with details * * Create a new info message. The message will make copies of @error and * @debug. -- GitLab