Update of /cvsroot/pure-data/externals/iem/comport/comport In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9135
Modified Files: comport.c Log Message: Slight change at line 1017 to avoid unsigned/signed warning.
Index: comport.c =================================================================== RCS file: /cvsroot/pure-data/externals/iem/comport/comport/comport.c,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** comport.c 11 Oct 2007 21:06:09 -0000 1.31 --- comport.c 12 Oct 2007 00:40:13 -0000 1.32 *************** *** 1015,1019 **** { int result = write(x->comhandle,(char *)serial_buf, buf_length); ! if (result != buf_length) post ("[comport] write returned %d, errno is %d", result, errno); return result; --- 1015,1019 ---- { int result = write(x->comhandle,(char *)serial_buf, buf_length); ! if (result != (int)buf_length) post ("[comport] write returned %d, errno is %d", result, errno); return result;