aboutsummaryrefslogtreecommitdiffstats
path: root/thread_pthread.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-21 08:26:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-01-21 08:26:17 +0000
commit03a89f5bc3fd17e4a75a8d3a4ad48e8be1d9451a (patch)
treec983d7f8e9a5a1ec121346cc6fcae4926b89a20d /thread_pthread.c
parentf72e5b8bd39ac081272a2e956de0cf53a8a2eb67 (diff)
downloadruby-03a89f5bc3fd17e4a75a8d3a4ad48e8be1d9451a.tar.gz
* 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
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 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