summaryrefslogtreecommitdiff
path: root/software/apilib/llman/octapi_llman.c
diff options
context:
space:
mode:
authorOctasic Inc <support@octasic.com>2006-06-02 17:20:02 +0300
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2011-02-27 21:07:43 +0200
commit28d1a12970507987a1e064ec1f59e73c11e65b4e (patch)
tree3222724baa46fb6f63035867b63fd273885cdecc /software/apilib/llman/octapi_llman.c
parent55d5dda36701cda2857f38ba7d60bd40f2c5e51a (diff)
importing OCT612x-01.00-PR41
Diffstat (limited to 'software/apilib/llman/octapi_llman.c')
-rw-r--r--software/apilib/llman/octapi_llman.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/software/apilib/llman/octapi_llman.c b/software/apilib/llman/octapi_llman.c
index c148eae..b622c45 100644
--- a/software/apilib/llman/octapi_llman.c
+++ b/software/apilib/llman/octapi_llman.c
@@ -24,9 +24,9 @@ You should have received a copy of the GNU General Public License
along with the OCT6100 GPL API; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-$Octasic_Release: OCT612xAPI-01.00-PR40 $
+$Octasic_Release: OCT612xAPI-01.00-PR41 $
-$Octasic_Revision: 21 $
+$Octasic_Revision: 22 $
\*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#include "octapi_llman_private.h"
@@ -2675,7 +2675,7 @@ VOID * OctApiLlmMemCpy( VOID *f_pvDestination, const VOID * f_pvSource, UINT32 f
* then punt into the byte copy loop. This should be rare.
*/
if ( ( f_ulSize < sizeof(UINT32) )
- || ( ( (UINT32)( pbySrc ) & ( sizeof(UINT32) - 1 ) ) | ( (UINT32)( pbyDst ) & ( sizeof(UINT32) - 1 ) ) ) )
+ || ( ( (unsigned long)( pbySrc ) & ( sizeof(UINT32) - 1 ) ) | ( (unsigned long)( pbyDst ) & ( sizeof(UINT32) - 1 ) ) ) )
{
while ( f_ulSize-- )
*pbyDst++ = *pbySrc++;