diff options
author | Andreas Färber <afaerber@suse.de> | 2013-08-24 01:12:33 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-08-30 20:14:38 +0200 |
commit | 53caad9a31bed10f59c70406001b9217bda2d111 (patch) | |
tree | a1c0ca2b62f858e4b07c91bd95c1ba887b3f41ac /include/qom/object.h | |
parent | e65177a87f22b98b3b82433d05a18a2c4a3714da (diff) | |
download | qemu-53caad9a31bed10f59c70406001b9217bda2d111.zip |
qom: Fix object_initialize_with_type() argument name in documentation
@obj -> @data.
Reviewed-by: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'include/qom/object.h')
-rw-r--r-- | include/qom/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qom/object.h b/include/qom/object.h index 48109dea74..c463ceda5a 100644 --- a/include/qom/object.h +++ b/include/qom/object.h @@ -585,7 +585,7 @@ Object *object_new_with_type(Type type); /** * object_initialize_with_type: - * @obj: A pointer to the memory to be used for the object. + * @data: A pointer to the memory to be used for the object. * @type: The type of the object to instantiate. * * This function will initialize an object. The memory for the object should |