1
1

java: fix typo in MPI_Win_attach binding

Этот коммит содержится в:
Gilles Gouaillardet 2015-06-28 09:27:19 +09:00
родитель 628364a550
Коммит d948a43993

Просмотреть файл

@ -120,9 +120,9 @@ public void attach(Buffer base, int size) throws MPIException
else
throw new AssertionError();
int sizeBytes = size * baseSize,
int sizeBytes = size * baseSize;
attach(handle, base, size);
attach(handle, base, sizeBytes);
}
private native void attach(long win, Buffer base, int size) throws MPIException;