Skip to content
Snippets Groups Projects
Commit e91bbdf3 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Align interface of fwMPINONB with that of cdiPioFileWrite.

parent 10f004a0
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ cdiPioFileWrite(int fileID, const void *restrict buffer, size_t len, int tsID)
switch ( commInqIOMode ())
{
case PIO_MPI:
iret = fwMPINONB ( fileID, tsID, buffer, len );
iret = fwMPINONB(fileID, buffer, len, tsID);
break;
#ifndef _SX
case PIO_ASYNCH:
......
......@@ -91,7 +91,7 @@ typedef void (*elemOp)(void *elem, void *data);
void listSetForeach(listSet *q, elemOp func, void *data);
/* pio_mpinonb.c */
size_t fwMPINONB( int, int, const void *, size_t );
size_t fwMPINONB(int, const void *, size_t, int);
void initMPINONB(void);
void finalizeMPINONB ( void );
......
......@@ -173,7 +173,7 @@ writeMPINONB(aFiledataM *of)
/***************************************************************/
size_t fwMPINONB ( int fileID, int tsID, const void *buffer, size_t len )
size_t fwMPINONB(int fileID, const void *buffer, size_t len, int tsID)
{
int error = 0;
int filled = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment