From ddea36491da2339a9e7dde7923ca56970e551031 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Wed, 4 Dec 2024 13:29:07 +0600 Subject: [PATCH] Fix compilation --- src/usb/usb_ohci_bochs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/usb/usb_ohci_bochs.c b/src/usb/usb_ohci_bochs.c index 32464c39987..1663b6105cd 100644 --- a/src/usb/usb_ohci_bochs.c +++ b/src/usb/usb_ohci_bochs.c @@ -899,7 +899,7 @@ void usb_ohci_mem_write(uint32_t addr, uint32_t value, void* priv) hub->op_regs.HcControl.ir = false; } /* FIXME: Figure out how is USB handed off from SMI on SiS 5600 chipsets. ACPI can be disabled on some of those as well */ - else if (!stricmp(machine_get_internal_name(), "p6f99")) + else if (!strcmp(machine_get_internal_name(), "p6f99")) { /* Do nothing for now*/ }