Sorry, I forgot a semi-colan

This commit is contained in:
MissValeska 2014-05-10 12:47:04 -07:00
parent 267988b246
commit d585116c1c

View File

@ -1084,7 +1084,7 @@ ssize_t inet_sendto(int s, const void *msg, size_t len, int flags,
if(bytesleft > 64000) { if(bytesleft > 64000) {
inet_sendto(s, msg, 64000, flags, to, tolen); inet_sendto(s, msg, 64000, flags, to, tolen);
bytesleft -= 64000; bytesleft -= 64000;
msg += 64000 msg += 64000;
//err=inet_sendto(s, ((const char *)msg+(len/2)), //err=inet_sendto(s, ((const char *)msg+(len/2)),
//len-(len/2), flags, to, tolen); //len-(len/2), flags, to, tolen);
} }