From: Jack Lange Date: Thu, 26 May 2011 18:33:17 +0000 (-0500) Subject: paramater type fix X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=commitdiff_plain;h=a7690ac16734100d2c570dd744bbc87ddc6d72a3;p=palacios.git paramater type fix --- diff --git a/palacios/src/palacios/vmm_xml.c b/palacios/src/palacios/vmm_xml.c index 391c9e4..d6963c8 100644 --- a/palacios/src/palacios/vmm_xml.c +++ b/palacios/src/palacios/vmm_xml.c @@ -62,7 +62,7 @@ struct v3_xml_root { // additional data for the root tag static char * empty_attrib_list[] = { NULL }; // empty, null terminated array of strings -static void * tmp_realloc(void * old_ptr, uint_t old_size, uint_t new_size) { +static void * tmp_realloc(void * old_ptr, size_t old_size, size_t new_size) { void * new_buf = V3_Malloc(new_size); if (new_buf == NULL) {