diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2024-09-18 21:46:34 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-09-24 13:53:35 +0200 |
commit | 2a7e148641596f2c49c83a3115f10d9aa2826728 (patch) | |
tree | 143aab14734ce8b3b07ddef1794dabc3e12391c6 /hw/net/vmxnet3.c | |
parent | f1912e48244816d071b2836052c54845ba57343c (diff) | |
download | qemu-2a7e148641596f2c49c83a3115f10d9aa2826728.zip qemu-2a7e148641596f2c49c83a3115f10d9aa2826728.tar.gz qemu-2a7e148641596f2c49c83a3115f10d9aa2826728.tar.bz2 |
hw/net: remove return after 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 <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-ID: <20240919044641.386068-28-pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'hw/net/vmxnet3.c')
-rw-r--r-- | hw/net/vmxnet3.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c index bb8583c..8aa8c46 100644 --- a/hw/net/vmxnet3.c +++ b/hw/net/vmxnet3.c @@ -456,7 +456,6 @@ vmxnet3_setup_tx_offloads(VMXNET3State *s) default: g_assert_not_reached(); - return false; } return true; |