Use __u32 instead of __s32 due to type of bucket->parm to fix:
1028 bucket->perm = (__u32*)calloc(1, bucket->size * sizeof(__s32));
Result of 'calloc' is converted to a pointer of type '__u32',
which is incompatible with sizeof operand type '__s32'
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
::decode(bucket->items[j], blp);
}
- bucket->perm = (__u32*)calloc(1, bucket->size * sizeof(__s32));
+ bucket->perm = (__u32*)calloc(1, bucket->size * sizeof(__u32));
bucket->perm_n = 0;
switch (bucket->alg) {