aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-07 04:10:27 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-07 04:10:27 +0000
commitdefd374aae4a4201590ed5ae28238c68a43f5ce6 (patch)
tree199b34a47eea176961286e65fc1a2bd9a41d5da1
parent91892b820e53ccd9620a6374416eb928375acd2c (diff)
downloadruby-defd374aae4a4201590ed5ae28238c68a43f5ce6.tar.gz
* io.c (pipe_open): should be rb_pid_t.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--io.c2
-rw-r--r--version.h4
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index fcd3d24a05..3af3c64e0f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu May 7 13:10:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * io.c (pipe_open): should be rb_pid_t.
+
Wed May 6 16:50:20 2009 Tanaka Akira <akr@fsij.org>
* math.c (math_gamma): use a table for positive small integers.
diff --git a/io.c b/io.c
index 9c68be15bf..72bb5b77c7 100644
--- a/io.c
+++ b/io.c
@@ -4593,7 +4593,7 @@ popen_exec(void *pp, char *errmsg, size_t errmsg_len)
static VALUE
pipe_open(struct rb_exec_arg *eargp, VALUE prog, const char *modestr, int fmode, convconfig_t *convconfig)
{
- int pid = 0;
+ rb_pid_t pid = 0;
rb_io_t *fptr;
VALUE port;
rb_io_t *write_fptr;
diff --git a/version.h b/version.h
index 488e344acc..915d324a25 100644
--- a/version.h
+++ b/version.h
@@ -1,5 +1,5 @@
#define RUBY_VERSION "1.9.2"
-#define RUBY_RELEASE_DATE "2009-05-06"
+#define RUBY_RELEASE_DATE "2009-05-07"
#define RUBY_PATCHLEVEL -1
#define RUBY_BRANCH_NAME "trunk"
@@ -8,7 +8,7 @@
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2009
#define RUBY_RELEASE_MONTH 5
-#define RUBY_RELEASE_DAY 6
+#define RUBY_RELEASE_DAY 7
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];