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/pmem.h | |
| parent | 43c0b05d943f03bc31a35afad8c325904dedc931 (diff) | |
| download | focaccia-qemu-59a749a4d2c5df586540fed106ef620446e7a4f1.tar.gz focaccia-qemu-59a749a4d2c5df586540fed106ef620446e7a4f1.zip | |
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/pmem.h')
| -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 d2d7ad085c..e12a67ba2c 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 |