summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVal Och <v19930312@gmail.com>2022-11-20 08:41:18 +0000
committerVal Och <v19930312@gmail.com>2022-11-20 08:41:18 +0000
commit7328710927154033e0d4f5bf429f03ea3b210a54 (patch)
tree76cca770f190bb739c5468d1a4b75e62554af828
parent32e25cdab37065f5ce8503a51fb92b880e9e27b4 (diff)
downloadlibsoup-7328710927154033e0d4f5bf429f03ea3b210a54.tar.gz
soup-multipart.c: add missing (nullable) annotations
-rw-r--r--libsoup/soup-multipart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsoup/soup-multipart.c b/libsoup/soup-multipart.c
index 0324b54e..2421c91f 100644
--- a/libsoup/soup-multipart.c
+++ b/libsoup/soup-multipart.c
@@ -330,8 +330,8 @@ soup_multipart_append_form_string (SoupMultipart *multipart,
* soup_multipart_append_form_file:
* @multipart: a multipart (presumably of type "multipart/form-data")
* @control_name: the name of the control associated with this file
- * @filename: the name of the file, or %NULL if not known
- * @content_type: the MIME type of the file, or %NULL if not known
+ * @filename: (nullable): the name of the file, or %NULL if not known
+ * @content_type: (nullable): the MIME type of the file, or %NULL if not known
* @body: the file data
*
* Adds a new MIME part containing @body to @multipart