* grub-core/disk/raid6_recover.c (grub_raid_block_mulx): Use grub_size_t
for size.
This commit is contained in:
parent
6e327fcd4c
commit
80b29fc9b4
2 changed files with 7 additions and 2 deletions
|
@ -34,9 +34,9 @@ static unsigned powx_inv[256];
|
|||
static const grub_uint8_t poly = 0x1d;
|
||||
|
||||
static void
|
||||
grub_raid_block_mulx (unsigned mul, char *buf, int size)
|
||||
grub_raid_block_mulx (unsigned mul, char *buf, grub_size_t size)
|
||||
{
|
||||
int i;
|
||||
grub_size_t i;
|
||||
grub_uint8_t *p;
|
||||
|
||||
p = (grub_uint8_t *) buf;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue