summaryrefslogtreecommitdiff
path: root/xs_url.h
diff options
context:
space:
mode:
authorGravatar default2024-05-21 14:12:15 +0200
committerGravatar default2024-05-21 14:12:15 +0200
commit4777fc86cb962917a8f34afb3bfa40f26290815d (patch)
tree268c078531a018f07c1b6d029f14f87134805f7b /xs_url.h
parentVersion 2.53 RELEASED. (diff)
downloadpenes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.tar.gz
penes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.tar.xz
penes-snac2-4777fc86cb962917a8f34afb3bfa40f26290815d.zip
Added const everywhere.
Diffstat (limited to 'xs_url.h')
-rw-r--r--xs_url.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs_url.h b/xs_url.h
index 6c9c8b5..69313b6 100644
--- a/xs_url.h
+++ b/xs_url.h
@@ -119,8 +119,8 @@ xs_dict *xs_multipart_form_data(const char *payload, int p_size, const char *hea
119 while ((p = xs_memmem(payload + offset, p_size - offset, boundary, bsz)) != NULL) { 119 while ((p = xs_memmem(payload + offset, p_size - offset, boundary, bsz)) != NULL) {
120 xs *s1 = NULL; 120 xs *s1 = NULL;
121 xs *l1 = NULL; 121 xs *l1 = NULL;
122 char *vn = NULL; 122 const char *vn = NULL;
123 char *fn = NULL; 123 const char *fn = NULL;
124 char *q; 124 char *q;
125 int po, ps; 125 int po, ps;
126 126