diff options
| author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2024-09-18 21:46:37 -0700 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-09-24 13:53:35 +0200 |
| commit | d13526f77a6266eb09ccc638eb6cd205d4b69a80 (patch) | |
| tree | 560cf69431f15aad9435f5945afaee187b77066a /migration/ram.c | |
| parent | f5ba75e1d20e87011351c51cab8e2623a9451caf (diff) | |
| download | focaccia-qemu-d13526f77a6266eb09ccc638eb6cd205d4b69a80.tar.gz focaccia-qemu-d13526f77a6266eb09ccc638eb6cd205d4b69a80.zip | |
migration: 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. Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-ID: <20240919044641.386068-31-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'migration/ram.c')
| -rw-r--r-- | migration/ram.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/migration/ram.c b/migration/ram.c index 0aa5d34743..81eda2736a 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -1766,13 +1766,11 @@ bool ram_write_tracking_available(void) bool ram_write_tracking_compatible(void) { g_assert_not_reached(); - return false; } int ram_write_tracking_start(void) { g_assert_not_reached(); - return -1; } void ram_write_tracking_stop(void) |