From 2fb247266baf66c022030aaecd61fb9a8e7bd8c8 Mon Sep 17 00:00:00 2001 From: 4lDO2 <4lDO2@protonmail.com> Date: Thu, 10 Apr 2025 15:35:59 +0200 Subject: [PATCH] Fix typo in pthread_exit test. --- tests/pthread/exit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pthread/exit.c b/tests/pthread/exit.c index 35fc31cf21..ce276b4239 100644 --- a/tests/pthread/exit.c +++ b/tests/pthread/exit.c @@ -11,7 +11,7 @@ void *routine(void *arg) { sleep(1); - puts("Thread "); + puts("Thread succeeded"); return NULL; }