aboutsummaryrefslogtreecommitdiffstats
path: root/curl-wrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'curl-wrap.c')
-rw-r--r--curl-wrap.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/curl-wrap.c b/curl-wrap.c
index 851eeb7..4e0c831 100644
--- a/curl-wrap.c
+++ b/curl-wrap.c
@@ -36,7 +36,7 @@ struct buffer {
static const char* curl_concatenate_args(const char * const *args, const char *sep, size_t *length)
{
int i;
- size_t lq, l;
+ size_t lq;
const char *null;
char *result, *front;
@@ -62,7 +62,6 @@ static const char* curl_concatenate_args(const char * const *args, const char *s
/* make the resulting args string contenated */
i = 0;
front = result;
- l = 0;
while (args[i]) {
if (i) {
front = stpcpy(front, sep);