mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-24 07:40:37 +00:00
kern/mm: Fix grub_debug_calloc() compilation error
Fix compilation error due to missing parameter to
grub_printf() when MM_DEBUG is defined.
Fixes: 64e26162e
(calloc: Make sure we always have an overflow-checking calloc() available)
Signed-off-by: Marco A Benatto <mbenatto@redhat.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
This commit is contained in:
parent
e346414725
commit
a9d8de9608
@ -594,7 +594,7 @@ grub_debug_calloc (const char *file, int line, grub_size_t nmemb, grub_size_t si
|
||||
|
||||
if (grub_mm_debug)
|
||||
grub_printf ("%s:%d: calloc (0x%" PRIxGRUB_SIZE ", 0x%" PRIxGRUB_SIZE ") = ",
|
||||
file, line, size);
|
||||
file, line, nmemb, size);
|
||||
ptr = grub_calloc (nmemb, size);
|
||||
if (grub_mm_debug)
|
||||
grub_printf ("%p\n", ptr);
|
||||
|
Loading…
Reference in New Issue
Block a user