summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukáš Tyrychtr <ltyrycht@redhat.com>2023-02-20 11:47:30 +0100
committerCarlos Garcia Campos <carlosgc@gnome.org>2023-02-20 11:31:29 +0000
commit74bc826eca06c77ba6aa3b819d08363053941c89 (patch)
tree4a6020fa3d2c7bdd5fbfd87ef59f14615f2e890e
parent60f3b75ad129ab7653133b571d6d7059b9fb7718 (diff)
downloadlibsoup-74bc826eca06c77ba6aa3b819d08363053941c89.tar.gz
Add a missing nullable annotation
Fixes #335
-rw-r--r--libsoup/soup-headers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsoup/soup-headers.c b/libsoup/soup-headers.c
index 8b04a834..86decde3 100644
--- a/libsoup/soup-headers.c
+++ b/libsoup/soup-headers.c
@@ -986,7 +986,7 @@ soup_header_g_string_append_param_quoted (GString *string,
* soup_header_g_string_append_param:
* @string: a #GString being used to construct an HTTP header value
* @name: a parameter name
- * @value: a parameter value, or %NULL
+ * @value: (nullable): a parameter value, or %NULL
*
* Appends something like `name=value` to @string, taking care to quote @value
* if needed, and if so, to escape any quotes or backslashes in @value.