ruby-changes:14537
From: nobu <ko1@a...>
Date: Fri, 22 Jan 2010 11:07:53 +0900 (JST)
Subject: [ruby-changes:14537] Ruby:r26374 (ruby_1_8): * process.c (rb_f_fork): fix for indent.
nobu 2010-01-22 11:07:42 +0900 (Fri, 22 Jan 2010) New Revision: 26374 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26374 Log: * process.c (rb_f_fork): fix for indent. Modified files: branches/ruby_1_8/process.c Index: ruby_1_8/process.c =================================================================== --- ruby_1_8/process.c (revision 26373) +++ ruby_1_8/process.c (revision 26374) @@ -1333,12 +1333,12 @@ #ifdef __NetBSD__ before_exec(); +#endif pid = fork(); +#ifdef __NetBSD__ after_exec(); +#endif switch (pid) { -#else - switch (pid = fork()) { -#endif case 0: #ifdef linux after_exec(); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/