diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2013-09-27 09:59:55 +0200 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2013-09-27 09:59:55 +0200 |
| commit | 4100e4bebb7eb55909378afcc38feaf6a1f601af (patch) | |
| tree | 48eafdab3bcfa1a41b86c6d1260d6f8996a7e66c | |
| parent | 8d3dc99d8a51e06d8841470601d014b16713ffeb (diff) | |
| download | lasso-4100e4bebb7eb55909378afcc38feaf6a1f601af.tar.gz lasso-4100e4bebb7eb55909378afcc38feaf6a1f601af.tar.xz lasso-4100e4bebb7eb55909378afcc38feaf6a1f601af.zip | |
bindings/perl: fix type of size variable incompatible with 64 bits arch
| -rw-r--r-- | bindings/perl/glist_handling.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/perl/glist_handling.c b/bindings/perl/glist_handling.c index 5ce1aea9..3a044d19 100644 --- a/bindings/perl/glist_handling.c +++ b/bindings/perl/glist_handling.c @@ -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)) |
