Warning fixes in generated Java code for 64bit Visual C++ on Windows.

This commit is contained in:
William S Fulton 2015-07-03 19:34:16 +01:00
commit c7da8bb06e
3 changed files with 5 additions and 5 deletions

View file

@ -65,7 +65,7 @@
%typemap(out) char **STRING_ARRAY {
if ($1) {
int i;
int len=0;
jsize len=0;
jstring temp_string;
const jclass clazz = JCALL1(FindClass, jenv, "java/lang/String");