From: Ulrich Drepper Date: Fri, 31 Mar 2000 05:52:47 +0000 (+0000) Subject: Declare bit flags UL so that they will not default to int size when X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d14e5d2dbb085e85c832b53909a28c673039c4a;p=thirdparty%2Fglibc.git Declare bit flags UL so that they will not default to int size when being inverted. --- diff --git a/malloc/malloc.c b/malloc/malloc.c index 645bcbe2dd4..f674f4ebfe2 100644 --- a/malloc/malloc.c +++ b/malloc/malloc.c @@ -1317,11 +1317,11 @@ static void free_atfork(); /* size field is or'ed with PREV_INUSE when previous adjacent chunk in use */ -#define PREV_INUSE 0x1 +#define PREV_INUSE 0x1UL /* size field is or'ed with IS_MMAPPED if the chunk was obtained with mmap() */ -#define IS_MMAPPED 0x2 +#define IS_MMAPPED 0x2UL /* Bits to mask off when extracting size */