1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

hotfix: sequence number integer type was too small.

This commit is contained in:
Steffen Vogel 2015-10-11 10:36:47 +02:00
parent 0d51b310bf
commit caffe10509

View file

@ -79,8 +79,8 @@ static void *SendToIPPort(void *arg)
unsigned int SendID = 1;
unsigned int ModelState;
unsigned int i, n;
unsigned short seq = 0;
int nbSend = 0;
uint32_t seq = 0;
/* Data from OPAL-RT model */
double mdldata[MSG_VALUES];