1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

Use correct type (unsigned) for message length.

modified:   rpc.c
This commit is contained in:
Nick Briggs 2017-06-07 21:21:15 -07:00
parent 2c3fb229d1
commit 9ea244b927

View File

@ -73,7 +73,8 @@ LispPTR rpc(args) LispPTR *args;
register int s, msec_until_timeout, msec_between_tries, out_length;
register int received, mask;
register int port;
int dontblock, dest, fromlen, read_descriptors;
int dontblock, dest, read_descriptors;
unsigned fromlen;
struct timeval pertry_timeout, total_timeout, time_waited;