mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-15 10:07:39 -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:
4
misc.c
4
misc.c
@ -307,8 +307,8 @@ char *buildinfo(const char *newline)
|
||||
return strbuf_to_str(buf);
|
||||
}
|
||||
|
||||
int nullseat_output(
|
||||
Seat *seat, bool is_stderr, const void *data, int len) { return 0; }
|
||||
size_t nullseat_output(
|
||||
Seat *seat, bool is_stderr, const void *data, size_t len) { return 0; }
|
||||
bool nullseat_eof(Seat *seat) { return true; }
|
||||
int nullseat_get_userpass_input(
|
||||
Seat *seat, prompts_t *p, bufchain *input) { return 0; }
|
||||
|
Reference in New Issue
Block a user