summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-28 01:20:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-28 01:20:23 +0000
commit41ab31e67a747e5db91a7ef4502a54cdf0525163 (patch)
treeed9c66c5e97566183cd516a9bfd436a382ba4a2f
parent1f2478a7e6dadc4085e631c9203a50f9f0389f4c (diff)
* process.c (rb_daemon): fix wrong #endif position.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32263 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--process.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 94424f3cfa..0a282b7870 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 28 10:18:42 2011 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * process.c (rb_daemon): fix wrong #endif position.
+
Tue Jun 28 07:50:32 2011 Eric Hodel <drbrain@segment7.net>
* object.c (Init_Object): Teach RDoc what Init_class_hierarchy does to
diff --git a/process.c b/process.c
index e873aedc23..19ab5744e1 100644
--- a/process.c
+++ b/process.c
@@ -4879,8 +4879,8 @@ rb_daemon(int nochdir, int noclose)
if (n > 2)
(void)close (n);
}
- return err;
#endif
+ return err;
}
#else
#define proc_daemon rb_f_notimplement