From: Joel Rosdahl Date: Sat, 23 Jul 2016 15:08:58 +0000 (+0200) Subject: Add missing variable declaration X-Git-Tag: v3.3~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bbce74418d5bd74cca9e6c7eec4132ccdddd32d6;p=thirdparty%2Fccache.git Add missing variable declaration Fixup after b81df8bf. --- diff --git a/execute.c b/execute.c index 5a15aab45..566ef9e82 100644 --- a/execute.c +++ b/execute.c @@ -59,7 +59,7 @@ win32argvtos(char *prefix, char **argv) do { int bs = 0; *ptr++ = '"'; - for (j = 0; arg[j]; j++) { + for (int j = 0; arg[j]; j++) { switch (arg[j]) { case '\\': bs++;