diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2024-09-18 21:46:32 -0700 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-09-24 13:53:35 +0200 |
commit | 59a749a4d2c5df586540fed106ef620446e7a4f1 (patch) | |
tree | 20cf6c8db8a18adc8be60fd962cc5c85eee3bfce /include/qemu | |
parent | 43c0b05d943f03bc31a35afad8c325904dedc931 (diff) | |
download | qemu-59a749a4d2c5df586540fed106ef620446e7a4f1.zip qemu-59a749a4d2c5df586540fed106ef620446e7a4f1.tar.gz qemu-59a749a4d2c5df586540fed106ef620446e7a4f1.tar.bz2 |
include/qemu: 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-26-pierrick.bouvier@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/qemu')
-rw-r--r-- | include/qemu/pmem.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/qemu/pmem.h b/include/qemu/pmem.h index d2d7ad0..e12a67b 100644 --- a/include/qemu/pmem.h +++ b/include/qemu/pmem.h @@ -22,7 +22,6 @@ pmem_memcpy_persist(void *pmemdest, const void *src, size_t len) /* If 'pmem' option is 'on', we should always have libpmem support, or qemu will report a error and exit, never come here. */ g_assert_not_reached(); - return NULL; } static inline void |