qapi: fix qapi_dealloc_type_size parameter type
authorBruce Rogers <brogers@suse.com>
Tue, 27 Nov 2012 20:11:25 +0000 (13:11 -0700)
committerLuiz Capitulino <lcapitulino@redhat.com>
Thu, 29 Nov 2012 13:05:23 +0000 (11:05 -0200)
The second parameter to qapi_dealloc_type_size should be a uint64_t *,
not a size_t *. This was causing our 32 bit x86 build to fail, since
warnings are treated as errors.

Signed-off-by: Bruce Rogers <brogers@suse.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
qapi/qapi-dealloc-visitor.c

index a07b171..75214e7 100644 (file)
@@ -132,7 +132,7 @@ static void qapi_dealloc_type_number(Visitor *v, double *obj, const char *name,
 {
 }
 
-static void qapi_dealloc_type_size(Visitor *v, size_t *obj, const char *name,
+static void qapi_dealloc_type_size(Visitor *v, uint64_t *obj, const char *name,
                                    Error **errp)
 {
 }