Skip to content

Commit

Permalink
fix cpp compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
zjuwangg committed Mar 7, 2024
1 parent ca7d2b9 commit f11f37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/core/jni/JniWrapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ JNIEXPORT jlong JNICALL Java_io_glutenproject_vectorized_ShuffleWriterJniWrapper
.partitioning = gluten::toPartitioning(jStringToCString(env, partitioningNameJstr)),
.taskAttemptId = (int64_t)taskAttemptId,
.startPartitionId = startPartitionId,
.sortBeforeRR = sortBeforeRR,
.sortBeforeRR = sortBeforeRR == JNI_TRUE,
};

jclass cls = env->FindClass("java/lang/Thread");
Expand Down

0 comments on commit f11f37c

Please sign in to comment.