From: Zhoujian Date: Thu, 12 Feb 2015 07:43:02 +0000 (+0800) Subject: qom: Fix typo, 'my_class_init' -> 'derived_class_init' X-Git-Tag: v2.3.0-rc0~48^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f824e8ed03cfcda55531206b2ee6fce62a7206f3;p=thirdparty%2Fqemu.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 89c3092967e..87575735fe3 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, * }; * *