Skip to content
Snippets Groups Projects
Commit e1ade1a8 authored by Keith Thorne's avatar Keith Thorne
Browse files

fix typo in errmsgbuf usage

git-svn-id: https://redoubt.ligo-wa.caltech.edu/svn/advLigoRTS/trunk@4234 6dcd42c9-f523-4c6d-aada-af552506706e
parent 440a865d
No related branches found
No related tags found
No related merge requests found
...@@ -370,7 +370,7 @@ listener (void * a) ...@@ -370,7 +370,7 @@ listener (void * a)
if (err_no = pthread_create (&daq -> interpreter_tid, NULL, (void *(*)(void *))daq -> interpreter, (void *) daq)) if (err_no = pthread_create (&daq -> interpreter_tid, NULL, (void *(*)(void *))daq -> interpreter, (void *) daq))
{ {
strerror_r(err_no, errmsgbuf, sizeof(errmsgbuf)); strerror_r(err_no, errmsgbuf, sizeof(errmsgbuf));
fprintf (stderr, "pthread_create() failed to spawn interpreter thread; err=%s", errmsgbug); fprintf (stderr, "pthread_create() failed to spawn interpreter thread; err=%s", errmsgbuf);
close (connfd); close (connfd);
} }
else else
......
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