From 03a89f5bc3fd17e4a75a8d3a4ad48e8be1d9451a Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 21 Jan 2014 08:26:17 +0000 Subject: * thread_pthread.c (rb_thread_create_timer_thread): fix missing paren. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44673 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 36fa73cd94..7f2aae4482 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -1490,7 +1490,7 @@ rb_thread_create_timer_thread(void) # define TIMER_THREAD_STACK_MIN_SIZE PTHREAD_STACK_MIN # endif pthread_attr_setstacksize(&attr, - TIMER_THREAD_STACK_MIN_SIZE + (THREAD_DEBUG ? BUFSIZ : 0); + TIMER_THREAD_STACK_MIN_SIZE + (THREAD_DEBUG ? BUFSIZ : 0)); } # endif #endif -- cgit v1.2.3