diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/urlglob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/urlglob.c b/src/urlglob.c index e2fc37775..f1223f793 100644 --- a/src/urlglob.c +++ b/src/urlglob.c @@ -341,7 +341,7 @@ int glob_url(URLGlob** glob, char* url, int *urlnum, FILE *error) if(NULL == glob_buffer) return CURLE_OUT_OF_MEMORY; - glob_expand = (URLGlob*)calloc(sizeof(URLGlob), 1); + glob_expand = calloc(sizeof(URLGlob), 1); if(NULL == glob_expand) { free(glob_buffer); return CURLE_OUT_OF_MEMORY; |