bindings/perl: fix type of size variable incompatible with 64 bits arch

This commit is contained in:
Benjamin Dauvergne 2013-09-27 09:59:55 +02:00
parent 8d3dc99d8a
commit 4100e4bebb
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ xmlnode_to_pv(xmlNode *node, gboolean do_free)
static xmlNode *
pv_to_xmlnode(SV *value) {
unsigned int size;
STRLEN size;
char *string;
if (! SvPOK(value))