aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-03-25 20:00:13 +0000
committercorvid <corvid@lavabit.com>2009-03-25 20:00:13 +0000
commitf6f5bbc0b88025a9b121e61c6fb8eb5e4fc0ddd3 (patch)
treea821cd2604a4c645093a34a99f336c2ab4e9bfe0 /src
parent6bb9fbbf734d7a8ab7f35e7435764813d0b70718 (diff)
fix POST form submission for 64-bit
Diffstat (limited to 'src')
-rw-r--r--src/IO/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IO/http.c b/src/IO/http.c
index d8ef6113..6a98a5a1 100644
--- a/src/IO/http.c
+++ b/src/IO/http.c
@@ -248,7 +248,7 @@ Dstr *a_Http_make_query_str(const DilloUrl *url, bool_t use_proxy)
"\r\n",
full_path->str, HTTP_Language_hdr, auth ? auth : "",
URL_AUTHORITY(url), proxy_auth->str, referer, VERSION,
- URL_DATA(url)->len, content_type->str,
+ (long)URL_DATA(url)->len, content_type->str,
cookies);
dStr_append_l(query, URL_DATA(url)->str, URL_DATA(url)->len);
dStr_free(content_type, TRUE);