small print out change

This commit is contained in:
Dhanya Maliakal 2016-09-21 16:37:52 +02:00
parent d6ca7ecbc4
commit 1aff36efb8

View File

@ -1254,7 +1254,7 @@ int UDPStandardImplementation::createDataCallbackThreads(bool destroy){
zmqThreadStarted = false; zmqThreadStarted = false;
currentThreadIndex = i; currentThreadIndex = i;
if(pthread_create(&dataCallbackThreads[i], NULL,startDataCallbackThread, (void*) this)){ if(pthread_create(&dataCallbackThreads[i], NULL,startDataCallbackThread, (void*) this)){
FILE_LOG(logERROR) << "Could not create listening thread with index " << i; FILE_LOG(logERROR) << "Could not create data call back thread with index " << i;
return FAIL; return FAIL;
} }
while(!zmqThreadStarted); while(!zmqThreadStarted);