Skip to content

Commit

Permalink
Merge pull request #4359 from gacholio/byte
Browse files Browse the repository at this point in the history
Fix compile error
  • Loading branch information
DanHeidinga committed Jan 21, 2019
2 parents 3b146d1 + dd4452e commit bdffa78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/j9vm/j8vmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ JVM_GetTemporaryDirectory(JNIEnv *env)
void JNICALL
JVM_CopySwapMemory(JNIEnv *env, jobject srcObj, jlong srcOffset, jobject dstObj, jlong dstOffset, jlong size, jlong elemSize)
{
void *srcBytes = NULL;
void *dstBytes = NULL;
U_8 *srcBytes = NULL;
U_8 *dstBytes = NULL;
U_8 *dstAddr = NULL;
if (NULL != srcObj) {
srcBytes = (*env)->GetPrimitiveArrayCritical(env, srcObj, NULL);
Expand Down

0 comments on commit bdffa78

Please sign in to comment.