8000 Fixing a macro call · wcork/arrayfire-java@dac1848 · GitHub
[go: up one dir, main page]

Skip to content

Commit dac1848

Browse files
committed
Fixing a macro call
LOGI --> LOG
1 parent a1a0f9f commit dac1848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/java_wrapper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ JNIEXPORT jfloatArray JNICALL Java_com_arrayfire_Array_host(JNIEnv *env, jclass
6969
int size = (*A).elements();
7070
result = env->NewFloatArray(size);
7171
if (result == NULL) {
72-
LOGI("Terrible thing happend, couldn't allocate heap space!!!!");
72+
LOG("Terrible thing happend, couldn't allocate heap space!!!!");
7373
return NULL;
7474
}
7575
jfloat* resf = env->GetFloatArrayElements(result, 0);

0 commit comments

Comments
 (0)
0