1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Get rid of all the MSVC warnings.

[originally from svn r7086]
This commit is contained in:
Simon Tatham
2007-01-09 18:24:07 +00:00
parent 4fa9564c90
commit 42801b7e9e
9 changed files with 43 additions and 43 deletions

View File

@ -6441,7 +6441,7 @@ int term_get_userpass_input(Terminal *term, prompts_t *p,
*/
{
int i;
for (i = 0; i < p->n_prompts; i++)
for (i = 0; i < (int)p->n_prompts; i++)
memset(p->prompts[i]->result, 0, p->prompts[i]->result_len);
}
}