From cf038f4c5128dbdf20f8b1093839259e8f620ddc Mon Sep 17 00:00:00 2001 From: mike Date: Tue, 6 Dec 2005 23:15:56 +0000 Subject: [PATCH] Changed sign of (unused) `len' argument to SvPV() -- I think the newer Perl distribution of Ubuntu 5.10 has changed this. --- typemap | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typemap b/typemap index 85ae80d..d0f7e0b 100644 --- a/typemap +++ b/typemap @@ -1,4 +1,4 @@ -# $Id: typemap,v 1.5 2005-10-17 13:48:08 mike Exp $ +# $Id: typemap,v 1.6 2005-12-06 23:15:56 mike Exp $ ZOOM_connection T_PTROBJ ZOOM_connection * T_PTROBJ @@ -67,8 +67,8 @@ T_OPAQUE_STRUCT else croak(\"$var is not of type ${ntype}\") T_OPAQUECHAR - int _unused_len; - $var = ($type) SvPV($arg, _unused_len); + { unsigned _unused_len; + $var = ($type) SvPV($arg, _unused_len); } ############################################################################# OUTPUT -- 1.7.10.4