- fixed debug output in iso_server.c

pull/259/head
Michael Zillgith 5 years ago
parent 2f5817e0ac
commit 4ee5891388

@ -542,7 +542,7 @@ isoServerThread(void* isoServerParam)
} }
if (DEBUG_ISO_SERVER) if (DEBUG_ISO_SERVER)
printf("ISO_SERVER: isoServerThread %p started\n", &isoServerParam); printf("ISO_SERVER: isoServerThread %p started\n", isoServerParam);
while (self->state == ISO_SVR_STATE_RUNNING) while (self->state == ISO_SVR_STATE_RUNNING)
{ {
@ -556,7 +556,7 @@ isoServerThread(void* isoServerParam)
cleanUp: cleanUp:
if (DEBUG_ISO_SERVER) if (DEBUG_ISO_SERVER)
printf("ISO_SERVER: isoServerThread %p stopped\n", &isoServerParam); printf("ISO_SERVER: isoServerThread %p stopped\n", isoServerParam);
} }
#endif #endif

Loading…
Cancel
Save