summaryrefslogtreecommitdiff
path: root/thread_pthread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 17:28:54 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 17:28:54 +0000
commit1ac74a11c2594f1cc4284c941ccf5ca91fc8e146 (patch)
treecffe36f89154008d935270b0ab3722328d27e63b /thread_pthread.c
parent3c23284734b60dac99339c300dff6c4bd2c226f4 (diff)
* thread_pthread.c (native_thread_create): fix debug message.
(add last newline) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32132 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r--thread_pthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_pthread.c b/thread_pthread.c
index 080bc0c9a0..496600e478 100644
--- a/thread_pthread.c
+++ b/thread_pthread.c
@@ -769,7 +769,7 @@ native_thread_create(rb_thread_t *th)
CHECK_ERR(pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED));
err = pthread_create(&th->thread_id, &attr, thread_start_func_1, th);
- thread_debug("create: %p (%d)", (void *)th, err);
+ thread_debug("create: %p (%d)\n", (void *)th, err);
CHECK_ERR(pthread_attr_destroy(&attr));
}
return err;