From: Zhoujian Date: Thu, 12 Feb 2015 07:43:02 +0000 (+0800) Subject: qom: Fix typo, 'my_class_init' -> 'derived_class_init' X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f824e8ed03cfcda55531206b2ee6fce62a7206f3;p=qemu.git qom: Fix typo, 'my_class_init' -> 'derived_class_init' Signed-off-by: Zhoujian Signed-off-by: Gonglei Signed-off-by: Andreas Färber --- diff --git a/include/qom/object.h b/include/qom/object.h index 89c3092967..87575735fe 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -273,7 +273,7 @@ typedef struct InterfaceInfo InterfaceInfo; * .name = TYPE_DERIVED, * .parent = TYPE_MY, * .class_size = sizeof(DerivedClass), - * .class_init = my_class_init, + * .class_init = derived_class_init, * }; * *