From: Pierrick Bouvier <pierrick.bouv...@linaro.org> 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 <faro...@suse.de> Reviewed-by: Richard Henderson <richard.hender...@linaro.org> Reviewed-by: Peter Xu <pet...@redhat.com> Signed-off-by: Pierrick Bouvier <pierrick.bouv...@linaro.org> Message-ID: <20240919044641.386068-14-pierrick.bouv...@linaro.org> Signed-off-by: Thomas Huth <th...@redhat.com> --- migration/dirtyrate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.46.0