1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-03 04:22:47 -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

2
ssh.c
View File

@ -507,7 +507,7 @@ static int ssh_rportcmp_ssh2(void *av, void *bv)
{
struct ssh_rportfwd *a = (struct ssh_rportfwd *) av;
struct ssh_rportfwd *b = (struct ssh_rportfwd *) bv;
int i;
if (a->sport > b->sport)
return +1;
if (a->sport < b->sport)