diff --git a/11.1.c b/11.1.c index 50783a5..3ebeae8 100644 --- a/11.1.c +++ b/11.1.c @@ -28,11 +28,11 @@ int main(void) err = pthread_create(&ntid, NULL, thr_fn, NULL); if (0 != err) { - printf("can't create thread :%s\n", strerror(err)); + printf("...can't create thread :%s...\n", strerror(err)); exit(-1); } - printids("main thread: "); + printids("...main thread: "); sleep(1); return 0;