qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 21/39] migration: replace assert(false) with g_assert_not_rea


From: Richard Henderson
Subject: Re: [PATCH 21/39] migration: replace assert(false) with g_assert_not_reached()
Date: Tue, 10 Sep 2024 20:27:19 -0700
User-agent: Mozilla Thunderbird

On 9/10/24 15:15, Pierrick Bouvier wrote:
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
---
  migration/dirtyrate.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/dirtyrate.c b/migration/dirtyrate.c
index 1d9db812990..a28c07327e8 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(); /* unreachable */
          return 0;
      }
  }

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~



reply via email to

[Prev in Thread] Current Thread [Next in Thread]