qemu-devel
[Top][All Lists]
Advanced

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

[PATCH] qom/object: simplify type_initialize_interface()


From: Masahiro Yamada
Subject: [PATCH] qom/object: simplify type_initialize_interface()
Date: Wed, 13 May 2020 03:25:01 +0900

iface_impl->class is the same as new_iface. Make it more readable.

Signed-off-by: Masahiro Yamada <address@hidden>
---

 qom/object.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/qom/object.c b/qom/object.c
index 9d1a918e42..75c628591d 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -262,8 +262,7 @@ static void type_initialize_interface(TypeImpl *ti, 
TypeImpl *interface_type,
     new_iface->concrete_class = ti->class;
     new_iface->interface_type = interface_type;
 
-    ti->class->interfaces = g_slist_append(ti->class->interfaces,
-                                           iface_impl->class);
+    ti->class->interfaces = g_slist_append(ti->class->interfaces, new_iface);
 }
 
 static void object_property_free(gpointer data)
-- 
2.25.1




reply via email to

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