From 79bc4d01fdc27880f9e085b15c7239e1f360f5c1 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 12 Nov 2009 05:00:47 +0000 Subject: * thread_pthread.c: removed last comma of enum. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thread_pthread.c b/thread_pthread.c index 076fc2aaf..12db73e08 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -468,7 +468,7 @@ enum { RUBY_STACK_MIN_LIMIT), RUBY_STACK_SPACE_LIMIT = 1024 * 1024, RUBY_STACK_SPACE = (RUBY_STACK_MIN/5 > RUBY_STACK_SPACE_LIMIT ? - RUBY_STACK_SPACE_LIMIT : RUBY_STACK_MIN/5), + RUBY_STACK_SPACE_LIMIT : RUBY_STACK_MIN/5) }; static int -- cgit