1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 11:02:48 -05:00

Theo Markettos's unsigned-vs-signed-char pedantry patch.

[originally from svn r3753]
This commit is contained in:
Simon Tatham
2004-01-21 19:45:44 +00:00
parent a326264500
commit 4dec95f80f
4 changed files with 19 additions and 19 deletions

View File

@ -871,7 +871,7 @@ static int net_select_result(int fd, int event)
memset(&isa, 0, sizeof(struct sockaddr_in));
err = 0;
t = accept(s->s,(struct sockaddr *)&isa,&addrlen);
t = accept(s->s,(struct sockaddr *)&isa,(socklen_t *) &addrlen);
if (t < 0) {
break;
}