add missing PKG_PATH invocation

This commit is contained in:
Eric House 2012-02-27 20:01:12 -08:00
parent 7644eb69cf
commit 2282a976f3

View file

@ -25,6 +25,7 @@
#include "utilwrapper.h" #include "utilwrapper.h"
#include "anddict.h" #include "anddict.h"
#include "andutils.h" #include "andutils.h"
#include "paths.h"
#include "LocalizedStrIncludes.h" #include "LocalizedStrIncludes.h"
typedef struct _TimerStorage { typedef struct _TimerStorage {
@ -469,11 +470,9 @@ and_util_informMissing(XW_UtilCtxt* uc, XP_Bool isServer,
CommsConnType connType, XP_U16 nMissing ) CommsConnType connType, XP_U16 nMissing )
{ {
UTIL_CBK_HEADER( "informMissing", UTIL_CBK_HEADER( "informMissing",
"(ZLorg/eehouse/android/xw4/jni/" "(ZL" PKG_PATH("jni/CommsAddrRec$CommsConnType") ";I)V" );
"CommsAddrRec$CommsConnType;I)V" );
jobject jtyp = intToJEnum( env, connType, jobject jtyp = intToJEnum( env, connType,
"org/eehouse/android/xw4/jni/" PKG_PATH("jni/CommsAddrRec$CommsConnType") );
"CommsAddrRec$CommsConnType" );
(*env)->CallVoidMethod( env, util->jutil, mid, isServer, jtyp, nMissing ); (*env)->CallVoidMethod( env, util->jutil, mid, isServer, jtyp, nMissing );
(*env)->DeleteLocalRef( env, jtyp ); (*env)->DeleteLocalRef( env, jtyp );
UTIL_CBK_TAIL(); UTIL_CBK_TAIL();