From: Pierrick Bouvier Date: Thu, 19 Sep 2024 04:46:18 +0000 (-0700) Subject: hw/pci: replace assert(false) with g_assert_not_reached() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4bd54186ce7ce327aba6fc41d7a10b72ff36a89d;p=qemu.git hw/pci: replace assert(false) with g_assert_not_reached() This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Richard Henderson Signed-off-by: Pierrick Bouvier Message-ID: <20240919044641.386068-12-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/hw/pci/pci-stub.c b/hw/pci/pci-stub.c index f0508682d2..c6950e21bd 100644 --- a/hw/pci/pci-stub.c +++ b/hw/pci/pci-stub.c @@ -46,13 +46,13 @@ void hmp_pcie_aer_inject_error(Monitor *mon, const QDict *qdict) /* kvm-all wants this */ MSIMessage pci_get_msi_message(PCIDevice *dev, int vector) { - g_assert(false); + g_assert_not_reached(); return (MSIMessage){}; } uint16_t pci_requester_id(PCIDevice *dev) { - g_assert(false); + g_assert_not_reached(); return 0; }