diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-11-23 09:47:16 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-11-26 13:41:01 -0600 |
commit | 339c2708e7a0d91e926c473314d563354a949c7f (patch) | |
tree | 5200ea1530b0e5f0ea6672684247f82aca0556f6 /qom/object.c | |
parent | 64b625f4b2fdb2c873e25c149648b2ce923faab7 (diff) |
qom: make object_finalize static
It is not used anymore, and there is no need to make it public.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qom/object.c')
-rw-r--r-- | qom/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qom/object.c b/qom/object.c index 3b50255450..0739aa2943 100644 --- a/qom/object.c +++ b/qom/object.c @@ -379,7 +379,7 @@ static void object_deinit(Object *obj, TypeImpl *type) } } -void object_finalize(void *data) +static void object_finalize(void *data) { Object *obj = data; TypeImpl *ti = obj->class->type; |