aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/thread_pthread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/thread_pthread.c')
-rw-r--r--src/common/thread_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread_pthread.c b/src/common/thread_pthread.c
index a85a0c7..274c1a7 100644
--- a/src/common/thread_pthread.c
+++ b/src/common/thread_pthread.c
@@ -40,7 +40,7 @@ bc_thread_create(bc_thread_func_t func, void *arg, bool detached, bc_error_t **e
if (0 != (r = pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED))) {
*err = bc_error_new_printf(BC_ERROR_THREAD,
- "Failed to mark thread as detached: %s", strerror(r));
+ "Failed to detach thread: %s", strerror(r));
return NULL;
}