Fixed (char *STRING, int LENGTH) typemap to use STRLEN type.

Eliminates compiler warning.


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5434 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-11-28 19:24:38 +00:00
commit 9aecb608c5

View file

@ -418,7 +418,7 @@
* ------------------------------------------------------------ */
%typemap(in) (char *STRING, int LENGTH) {
unsigned int temp;
STRLEN temp;
$1 = ($1_ltype) SvPV($input,temp);
$2 = ($2_ltype) temp;
}