From: Hallvard Furuseth Date: Mon, 2 Aug 1999 01:55:48 +0000 (+0000) Subject: Fix bitmasks '0xhh << n' to '(masked type)0xhh << n' X-Git-Tag: TWEB_OL_BASE~331 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a9871d74021fabb5ee2ff87973292afa1c968aef;p=openldap Fix bitmasks '0xhh << n' to '(masked type)0xhh << n' --- diff --git a/libraries/liblber/encode.c b/libraries/liblber/encode.c index 90f39d6ab2..0d95239544 100644 --- a/libraries/liblber/encode.c +++ b/libraries/liblber/encode.c @@ -142,7 +142,7 @@ ber_put_len( BerElement *ber, ber_len_t len, int nosos ) /* find the first non-all-zero byte */ for ( i = sizeof(ber_len_t) - 1; i > 0; i-- ) { - mask = (0xffU << (i * 8)); + mask = ((ber_len_t)0xffU << (i * 8)); /* not all zero */ if ( len & mask ) break; @@ -186,7 +186,7 @@ ber_put_int_or_enum( * high bit is clear - look for first non-all-zero byte */ for ( i = sizeof(ber_int_t) - 1; i > 0; i-- ) { - mask = (0xffU << (i * 8)); + mask = ((ber_uint_t)0xffU << (i * 8)); if ( sign ) { /* not all ones */ @@ -203,7 +203,7 @@ ber_put_int_or_enum( * we now have the "leading byte". if the high bit on this * byte matches the sign bit, we need to "back up" a byte. */ - mask = (unum & (0x80U << (i * 8))); + mask = (unum & ((ber_uint_t)0x80U << (i * 8))); if ( (mask && !sign) || (sign && !mask) ) i++;