From 6f78cdb634fbbbdb1a5233477acf85c0059ed77f Mon Sep 17 00:00:00 2001 From: ReactOS Portable Systems Group Date: Sat, 11 Jul 2009 12:33:10 +0000 Subject: [PATCH] Make rotl what the headers expect svn path=/trunk/; revision=41873 --- reactos/include/crt/mingw32/intrin_arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/crt/mingw32/intrin_arm.h b/reactos/include/crt/mingw32/intrin_arm.h index 85f8ca64431..5ed79369e0a 100644 --- a/reactos/include/crt/mingw32/intrin_arm.h +++ b/reactos/include/crt/mingw32/intrin_arm.h @@ -315,7 +315,7 @@ __INTRIN_INLINE void _enable(void) } #ifndef __MSVCRT__ -__INTRIN_INLINE unsigned long _rotl(const unsigned long value, const unsigned char shift) +__INTRIN_INLINE unsigned int _rotl(const unsigned int value, int shift) { return (((value) << ((int)(shift))) | ((value) >> (32 - (int)(shift)))); }