* grub-core/disk/ahci.c: Add needed explicit cast.
* grub-core/lib/backtrace.c: Likewise. * grub-core/net/ip.c: Likewise. * grub-core/net/tcp.c: Likewise. * grub-core/net/udp.c: Likewise.
This commit is contained in:
parent
3c601f8c81
commit
54ea2f4401
6 changed files with 15 additions and 7 deletions
|
@ -39,7 +39,7 @@ grub_backtrace_print_address (void *addr)
|
|||
+ segment->size > (grub_uint8_t *) addr)
|
||||
{
|
||||
grub_printf ("%s.%x+%" PRIxGRUB_SIZE, mod->name, segment->section,
|
||||
(grub_uint8_t *) addr - (grub_uint8_t *) segment->addr);
|
||||
(grub_size_t) ((grub_uint8_t *) addr - (grub_uint8_t *) segment->addr));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue