Replace direct fprintf(stderr, ???) with QEMU's error_report() API, which ensures consistent formatting and integrates with QEMU's logging infrastructure.
Signed-off-by: Osama Abdelkader <[email protected]> --- hw/arm/raspi4b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/arm/raspi4b.c b/hw/arm/raspi4b.c index 20082d5266..4a5f0eb91e 100644 --- a/hw/arm/raspi4b.c +++ b/hw/arm/raspi4b.c @@ -47,7 +47,7 @@ static int raspi_add_memory_node(void *fdt, hwaddr mem_base, hwaddr mem_len) scells = qemu_fdt_getprop_cell(fdt, "/", "#size-cells", NULL, &error_fatal); if (acells == 0 || scells == 0) { - fprintf(stderr, "dtb file invalid (#address-cells or #size-cells 0)\n"); + error_report("dtb file invalid (#address-cells or #size-cells 0)"); ret = -1; } else { qemu_fdt_add_subnode(fdt, nodename); -- 2.43.0
