mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
object: make some funcs static
There is no need to have those functions as public API. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
39a1075a8b
commit
63f7b10bc5
2 changed files with 2 additions and 26 deletions
|
@ -357,7 +357,7 @@ static void object_post_init_with_type(Object *obj, TypeImpl *ti)
|
|||
}
|
||||
}
|
||||
|
||||
void object_initialize_with_type(void *data, size_t size, TypeImpl *type)
|
||||
static void object_initialize_with_type(void *data, size_t size, TypeImpl *type)
|
||||
{
|
||||
Object *obj = data;
|
||||
|
||||
|
@ -473,7 +473,7 @@ static void object_finalize(void *data)
|
|||
}
|
||||
}
|
||||
|
||||
Object *object_new_with_type(Type type)
|
||||
static Object *object_new_with_type(Type type)
|
||||
{
|
||||
Object *obj;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue