Loading lib_lc3plus/lc3.c +2 −2 Original line number Diff line number Diff line Loading @@ -121,9 +121,9 @@ static int null_in_list(void **list, int n) /* return pointer to aligned base + base_size, *base_size += size + 4 bytes align */ void *balloc(void *base, size_t *base_size, size_t size) { uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & ~3; uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & (uintptr_t)(~3); assert((uintptr_t)base % 4 == 0); /* base must be 4-byte aligned */ *base_size = (*base_size + size + 3) & ~3; *base_size = (*base_size + size + 3) & (uintptr_t)(~3); return (void *)ptr; } Loading lib_dec/ivas_jbm_dec_fx.c +2 −2 File changed.Contains only whitespace changes. Show changes Loading
lib_lc3plus/lc3.c +2 −2 Original line number Diff line number Diff line Loading @@ -121,9 +121,9 @@ static int null_in_list(void **list, int n) /* return pointer to aligned base + base_size, *base_size += size + 4 bytes align */ void *balloc(void *base, size_t *base_size, size_t size) { uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & ~3; uintptr_t ptr = ((uintptr_t)base + *base_size + 3) & (uintptr_t)(~3); assert((uintptr_t)base % 4 == 0); /* base must be 4-byte aligned */ *base_size = (*base_size + size + 3) & ~3; *base_size = (*base_size + size + 3) & (uintptr_t)(~3); return (void *)ptr; } Loading