summaryrefslogtreecommitdiff
path: root/process.c
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 /process.c
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
Diffstat (limited to 'process.c')
-rw-r--r--process.c2
1 files changed, 1 insertions, 1 deletions
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