aboutsummaryrefslogtreecommitdiff
path: root/src/Sockets.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Sockets.c')
-rw-r--r--src/Sockets.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Sockets.c b/src/Sockets.c
index 9d8afb8..2d36b02 100644
--- a/src/Sockets.c
+++ b/src/Sockets.c
@@ -81,7 +81,7 @@ typedef struct ISOSocket
isoSocketState state;
} isoSocket;
-/********************************************************************
+/*******************************************************************
********************* Local Routine Prototypes *********************
********************************************************************/
@@ -326,10 +326,11 @@ int Iso_Poll(cGH *cctkGH, long sec, long usec)
}
int IsoWriteDataToClients(const char *metadata,
- CCTK_INT4 size,
+ CCTK_INT8 size,
IsoType type,
- CCTK_INT4 *data)
+ void *dataP)
{
+ CCTK_INT4 *data=(CCTK_INT4*)dataP;
int retval;
CCTK_INT4 i;
CCTK_INT4 datatype;