From 0e823a62c7c256c8aeed4e4cc72ae6d969175c55 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Fri, 28 Apr 2000 02:19:49 +0000 Subject: [PATCH] fixed memcpy () arguments reversal --- src/ca/netReadCopyIO.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ca/netReadCopyIO.cpp b/src/ca/netReadCopyIO.cpp index f00a8a5cb..8f131dbe9 100644 --- a/src/ca/netReadCopyIO.cpp +++ b/src/ca/netReadCopyIO.cpp @@ -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); }