mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-05 21:42:47 -05:00
Make lots of 'int' length fields into size_t.
This is a general cleanup which has been overdue for some time: lots of length fields are now the machine word type rather than the (in practice) fixed 'int'.
This commit is contained in:
@ -490,7 +490,7 @@ static void console_close(FILE *outfp, int infd)
|
||||
fclose(outfp); /* will automatically close infd too */
|
||||
}
|
||||
|
||||
static void console_prompt_text(FILE *outfp, const char *data, int len)
|
||||
static void console_prompt_text(FILE *outfp, const char *data, size_t len)
|
||||
{
|
||||
bufchain sanitised;
|
||||
void *vdata;
|
||||
|
Reference in New Issue
Block a user