ruby-changes:32594
From: nobu <ko1@a...>
Date: Tue, 21 Jan 2014 17:26:23 +0900 (JST)
Subject: [ruby-changes:32594] nobu:r44673 (trunk): * thread_pthread.c (rb_thread_create_timer_thread): fix missing paren.
nobu 2014-01-21 17:26:17 +0900 (Tue, 21 Jan 2014) New Revision: 44673 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44673 Log: * thread_pthread.c (rb_thread_create_timer_thread): fix missing paren. Modified files: trunk/thread_pthread.c Index: thread_pthread.c =================================================================== --- thread_pthread.c (revision 44672) +++ thread_pthread.c (revision 44673) @@ -1490,7 +1490,7 @@ rb_thread_create_timer_thread(void) https://github.com/ruby/ruby/blob/trunk/thread_pthread.c#L1490 # 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/