mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-27 07:58:49 +01:00
silence warning with cast
This commit is contained in:
parent
84044fa9ee
commit
b490618c8e
1 changed files with 1 additions and 1 deletions
|
@ -1389,7 +1389,7 @@ Java_org_eehouse_android_xw4_jni_XwJNI_dict_1iter_1getIndices
|
|||
if ( NULL != data ) {
|
||||
XP_ASSERT( !!data->indices );
|
||||
XP_ASSERT( sizeof(jint) == sizeof(data->indices[0]) );
|
||||
jindices = makeIntArray( env, data->nIndices, data->indices );
|
||||
jindices = makeIntArray( env, data->nIndices, (jint*)data->indices );
|
||||
(*env)->DeleteLocalRef( env, jindices );
|
||||
}
|
||||
return jindices;
|
||||
|
|
Loading…
Add table
Reference in a new issue