Make sure epicsInt8 is signed on all architectures

This commit is contained in:
2021-12-17 09:16:31 +01:00
parent 1c3aa01846
commit c5012d9f73
5 changed files with 20 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ void comQueRecv::clear ()
this->nBytesPending = 0u;
}
unsigned comQueRecv::copyOutBytes ( epicsInt8 *pBuf, unsigned nBytes )
unsigned comQueRecv::copyOutBytes ( char *pBuf, unsigned nBytes )
{
unsigned totalBytes = 0u;
do {