1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-14 09:37:34 -05:00

Fix various small compiler warnings, mostly unused local variables

[originally from svn r1218]
This commit is contained in:
Simon Tatham
2001-08-28 08:08:43 +00:00
parent 493d34c655
commit ea27f048f9
6 changed files with 7 additions and 14 deletions

View File

@ -81,7 +81,7 @@ static void gprefs(void *sesskey, char *name, char *def,
} while (n < nvals);
/* Add any missing values (backward compatibility ect). */
{
int i, j;
int i;
for (i = 0; i < nvals; i++) {
if (!(seen & 1<<mapping[i].v)) {
array[n] = mapping[i].v;