Hello, Igor, I pulled and rebased you fix, thank you! I added your Signed-off-by, but please let me know if that is a problem for you. Please see below for the revised commit. Thanx, Paul ------------------------------------------------------------------------ commit bbac20d336b4ee403ff7fd183a9d8343041214c8 Author: Igor Dzreyev <igor.dzreyev@xxxxxxxxx> Date: Thu Apr 9 11:56:41 2020 +0300 toolsoftrade: Fix a typo in pcreate.c Signed-off-by: Igor Dzreyev <igor.dzreyev@xxxxxxxxx> Signed-off-by: Paul E. McKenney <paulmck@xxxxxxxxxx> diff --git a/CodeSamples/toolsoftrade/pcreate.c b/CodeSamples/toolsoftrade/pcreate.c index b5e173e..f1e6ff3 100644 --- a/CodeSamples/toolsoftrade/pcreate.c +++ b/CodeSamples/toolsoftrade/pcreate.c @@ -45,7 +45,7 @@ int main(int argc, char *argv[]) if ((en = pthread_create(&tid, NULL, //\lnlbl{create:a} mythread, NULL)) != 0) {//\lnlbl{create:b} - fprintf(stderr, "pthread_join: %s\n", strerror(en)); + fprintf(stderr, "pthread_create: %s\n", strerror(en)); exit(EXIT_FAILURE); }