From 73f8d93f0db5a960bf22e9d080283e967f6bbfb6 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 9 May 2018 12:57:09 +0200 Subject: Documentate, formating, linting. Change-Id: Id77b9de1b847ca26133abd87511de4e78c7d01f7 Signed-off-by: Romain Forlot --- curl-wrap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'curl-wrap.c') 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); -- cgit 1.2.3-korg