aboutsummaryrefslogtreecommitdiff
path: root/lib/sendf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sendf.c')
-rw-r--r--lib/sendf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c
index cdab3abdd..568e7b8cd 100644
--- a/lib/sendf.c
+++ b/lib/sendf.c
@@ -91,7 +91,7 @@ struct curl_slist *curl_slist_append(struct curl_slist *list,
struct curl_slist *last;
struct curl_slist *new_item;
- new_item = (struct curl_slist *) malloc(sizeof(struct curl_slist));
+ new_item = malloc(sizeof(struct curl_slist));
if(new_item) {
char *dupdata = strdup(data);
if(dupdata) {