fixed memcpy () arguments reversal

This commit is contained in:
Jeff Hill
2000-04-28 02:19:49 +00:00
parent d9bd2a3bdf
commit 0e823a62c7

View File

@@ -43,7 +43,7 @@ void netReadCopyIO::completionNotify ( unsigned type, unsigned long count, const
# ifdef CONVERSION_REQUIRED
(*cac_dbr_cvrt[type]) ( pData, this->pValue, FALSE, count );
# else
memcpy (pData, pValue, dbr_size_n ( type, count ) );
memcpy ( this->pValue, pData, dbr_size_n ( type, count ) );
# endif
chan.decrementOutstandingIO (this->seqNumber);
}