We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1a0f9f commit dac1848Copy full SHA for dac1848
1 file changed
src/java_wrapper.cpp
@@ -69,7 +69,7 @@ JNIEXPORT jfloatArray JNICALL Java_com_arrayfire_Array_host(JNIEnv *env, jclass
69
int size = (*A).elements();
70
result = env->NewFloatArray(size);
71
if (result == NULL) {
72
- LOGI("Terrible thing happend, couldn't allocate heap space!!!!");
+ LOG("Terrible thing happend, couldn't allocate heap space!!!!");
73
return NULL;
74
}
75
jfloat* resf = env->GetFloatArrayElements(result, 0);
0 commit comments