http_message_add_headers(): fix implicit cast warning.

Michael
master
Michael Adam 2009-08-07 09:21:28 +02:00
parent baf634194c
commit f99edadc92
1 changed files with 2 additions and 1 deletions

View File

@ -207,7 +207,8 @@ http_message_add_headers (http_message_t msg, const char **headers,
*/
if (msg->headers.used + num_headers > msg->headers.total)
{
new_headers = safecalloc (msg->headers.total * 2, sizeof (char *));
new_headers = (const char **)safecalloc (msg->headers.total * 2,
sizeof (char *));
if (new_headers == NULL)
return -ENOMEM;