Commit 6c733dc4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

https: format string

parent 8ad73239
...@@ -871,7 +871,7 @@ int vlc_http_msg_add_cookies(struct vlc_http_msg *m, ...@@ -871,7 +871,7 @@ int vlc_http_msg_add_cookies(struct vlc_http_msg *m,
if (cookies != NULL) if (cookies != NULL)
{ {
val = vlc_http_msg_add_header(m, "Cookie", cookies); val = vlc_http_msg_add_header(m, "Cookie", "%s", cookies);
free(cookies); free(cookies);
} }
return val; return val;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment