Skip to content

Commit d0526d1

Browse files
committed
Fix bigcount versions of bcount, exscan, and file_write_all_begin
Signed-off-by: Jake Tronge <jtronge@lanl.gov>
1 parent e73e5a9 commit d0526d1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ompi/mpi/c/bcast.c.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#include "ompi/memchecker.h"
3030
#include "ompi/runtime/ompi_spc.h"
3131

32-
PROTOTYPE ERROR_CLASS bcast(BUFFER_OUT buffer, INT count, DATATYPE datatype,
32+
PROTOTYPE ERROR_CLASS bcast(BUFFER_OUT buffer, COUNT count, DATATYPE datatype,
3333
INT root, COMM comm)
3434
{
3535
int err;

ompi/mpi/c/exscan.c.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#include "ompi/memchecker.h"
3434
#include "ompi/runtime/ompi_spc.h"
3535

36-
PROTOTYPE ERROR_CLASS exscan(BUFFER sendbuf, BUFFER_OUT recvbuf, INT count,
36+
PROTOTYPE ERROR_CLASS exscan(BUFFER sendbuf, BUFFER_OUT recvbuf, COUNT count,
3737
DATATYPE datatype, OP op, COMM comm)
3838
{
3939
int err;

ompi/mpi/c/file_write_all_begin.c.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
#include "ompi/datatype/ompi_datatype.h"
3434
#include "ompi/memchecker.h"
3535

36-
PROTOTYPE ERROR_CLASS file_write_all_begin(FILE fh, BUFFER buf, INT count,
37-
DATATYPE datatype)
36+
PROTOTYPE ERROR_CLASS file_write_all_begin(FILE fh, BUFFER buf, COUNT count,
37+
DATATYPE datatype)
3838
{
3939
int rc;
4040

0 commit comments

Comments
 (0)