aboutsummaryrefslogtreecommitdiff
path: root/rust/qemu-api
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2024-11-05 18:03:12 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2024-12-10 18:44:06 +0100
commit7a35e2fb80df4c536cc808e498a259d96d0a804e (patch)
tree4bbcace6c62a5b199dea26518830243cd1909b3c /rust/qemu-api
parentde98c17593218e1c713c6e5d8ad7242c17d90e7e (diff)
downloadqemu-7a35e2fb80df4c536cc808e498a259d96d0a804e.zip
qemu-7a35e2fb80df4c536cc808e498a259d96d0a804e.tar.gz
qemu-7a35e2fb80df4c536cc808e498a259d96d0a804e.tar.bz2
rust: fix a couple style issues from clippy
These are reported as clippy::semicolon_inside_block and clippy::as_ptr_cast_mut. clippy::semicolon_inside_block can be configured not to lint single-line blocks; just go with the default. Reviewed-by: Junjie Mao <junjie.mao@hotmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'rust/qemu-api')
-rw-r--r--rust/qemu-api/tests/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/qemu-api/tests/tests.rs b/rust/qemu-api/tests/tests.rs
index 43a4827..925f5a3 100644
--- a/rust/qemu-api/tests/tests.rs
+++ b/rust/qemu-api/tests/tests.rs
@@ -74,6 +74,6 @@ fn test_device_decl_macros() {
unsafe {
module_call_init(module_init_type::MODULE_INIT_QOM);
- object_unref(object_new(DummyState::TYPE_NAME.as_ptr()) as *mut _);
+ object_unref(object_new(DummyState::TYPE_NAME.as_ptr()).cast());
}
}