From: Peter Harris Date: Thu, 23 Sep 2010 02:32:34 +0000 (-0400) Subject: Clean up a couple of warnings in xprint X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29cca33b9001961fa2c33bb9d9fe4a9983913fce;p=free-sw%2Fxcb%2Flibxcb Clean up a couple of warnings in xprint Signed-off-by: Peter Harris --- diff --git a/src/c_client.py b/src/c_client.py index a66c7e3..1f3277a 100644 --- a/src/c_client.py +++ b/src/c_client.py @@ -875,7 +875,7 @@ def _c_serialize_helper_fields_variable_size(context, self, field, # special case: intermixed fixed and variable size fields if self.var_followed_by_fixed_fields and 'unserialize' == context: - value = ' %s = xcb_tmp;' % field.c_field_name + value = ' %s = (%s *)xcb_tmp;' % (field.c_field_name, field.c_field_type) temp_vars.append(' %s *%s;' % (field.type.c_type, field.c_field_name)) # special case: switch if 'unpack' == context: