Fixed a horrible error in the C++ support header file that was preventing byte-channels from working

This commit is contained in:
Neil Brown 2007-10-14 00:32:59 +00:00
parent 3c101bae19
commit 053f91bc59

View File

@ -370,7 +370,7 @@ public:
inline void operator=(const tockSendableArrayOfBytes& _src)
{
//We use the receiver's byte count:
memcpy(dp,sp,n);
memcpy(dp,_src.sp,n);
}
};