fix unsigned int prob

This commit is contained in:
cxgeorge 2001-03-16 00:54:09 +00:00
parent 5cdaa0e708
commit 3daaac9892

View File

@ -114,7 +114,7 @@ int PipeStreamBuf::underflow(void) {
#else /* WIN32_VC */
memcpy(base()+(len-n), buf, n);
#endif /* WIN32_VC */
gbump(-n);
gbump(-((int)n));
}
delete buf;
return ret;