From: Pierrick Bouvier Date: Thu, 19 Sep 2024 04:46:20 +0000 (-0700) Subject: migration: replace assert(false) with g_assert_not_reached() X-Git-Tag: pull-vmclock-20250108~138^2~23 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fe1f1a8070a7c28ca371d35b48eda6db31349a3c;p=users%2Fdwmw2%2Fqemu.git migration: 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: Fabiano Rosas Reviewed-by: Richard Henderson Reviewed-by: Peter Xu Signed-off-by: Pierrick Bouvier Message-ID: <20240919044641.386068-14-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth --- diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c index 1d9db81299..c03b13b624 100644 --- a/migration/dirtyrate.c +++ b/migration/dirtyrate.c @@ -228,7 +228,7 @@ static int time_unit_to_power(TimeUnit time_unit) case TIME_UNIT_MILLISECOND: return -3; default: - assert(false); /* unreachable */ + g_assert_not_reached(); return 0; } }