Skip to content

Commit 11e1f09

Browse files
author
Nathaniel Graham
committed
White space fixes
Signed-off-by: Nathaniel Graham <[email protected]>
1 parent 7548e34 commit 11e1f09

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ompi/mpi/java/c/mpiJava.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ void ompi_java_releaseReadPtr(
9797
/* Gets a buffer pointer for writing. */
9898
void ompi_java_getWritePtr(
9999
void **ptr, ompi_java_buffer_t **item, JNIEnv *env,
100-
jobject buf, jboolean db, int count, MPI_Datatype type);
100+
jobject buf, jboolean db, int count, MPI_Datatype type);
101101

102102
/* Gets a buffer pointer for writing.
103103
* 'size' is the number of processes. */

ompi/mpi/java/c/mpi_Comm.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1605,8 +1605,8 @@ JNIEXPORT void JNICALL Java_mpi_Comm_allToAllw(
16051605
*rPtr = ompi_java_getDirectBufferAddress(env, recvBuf);
16061606

16071607
int rc = MPI_Alltoallw(
1608-
sPtr, cSCount, cSDispls, cSTypes,
1609-
rPtr, cRCount, cRDispls, cRTypes, comm);
1608+
sPtr, cSCount, cSDispls, cSTypes,
1609+
rPtr, cRCount, cRDispls, cRTypes, comm);
16101610

16111611
ompi_java_exceptionCheck(env, rc);
16121612
ompi_java_forgetIntArray(env, sCount, jSCount, cSCount);
@@ -1643,8 +1643,8 @@ JNIEXPORT jlong JNICALL Java_mpi_Comm_iAllToAllw(
16431643
MPI_Request request;
16441644

16451645
int rc = MPI_Ialltoallw(
1646-
sPtr, cSCount, cSDispls, cSTypes,
1647-
rPtr, cRCount, cRDispls, cRTypes, comm, &request);
1646+
sPtr, cSCount, cSDispls, cSTypes,
1647+
rPtr, cRCount, cRDispls, cRTypes, comm, &request);
16481648

16491649
ompi_java_exceptionCheck(env, rc);
16501650
ompi_java_forgetIntArray(env, sCount, jSCount, cSCount);

ompi/mpi/java/java/Comm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2336,7 +2336,7 @@ public final void allToAllw(
23362336

23372337
allToAllw(handle, sendBuf, sendCount, sDispls,
23382338
sendHandles, recvBuf, recvCount, rDispls,
2339-
recvHandles);
2339+
recvHandles);
23402340
}
23412341

23422342
private native void allToAllw(long comm,

0 commit comments

Comments
 (0)