[前][次][番号順一覧][スレッド一覧]

ruby-changes:35342

From: nobu <ko1@a...>
Date: Sat, 6 Sep 2014 08:45:22 +0900 (JST)
Subject: [ruby-changes:35342] nobu:r47424 (trunk): process.c: missing semicolon

nobu	2014-09-06 08:45:11 +0900 (Sat, 06 Sep 2014)

  New Revision: 47424

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=47424

  Log:
    process.c: missing semicolon
    
    * process.c (rb_exec_without_timer_thread): add missing semicolon
      to fix compilation error on OS X and Haiku.

  Modified files:
    trunk/process.c
Index: process.c
===================================================================
--- process.c	(revision 47423)
+++ process.c	(revision 47424)
@@ -3083,7 +3083,7 @@ static int https://github.com/ruby/ruby/blob/trunk/process.c#L3083
 rb_exec_without_timer_thread(const struct rb_execarg *eargp, char *errmsg, size_t errmsg_buflen)
 {
     int ret;
-    before_exec()
+    before_exec();
     ret = rb_exec_async_signal_safe(eargp, errmsg, errmsg_buflen); /* hopefully async-signal-safe */
     preserving_errno(after_exec()); /* not async-signal-safe because it calls rb_thread_start_timer_thread.  */
     return ret;

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]