diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-07 04:10:27 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-07 04:10:27 +0000 |
| commit | 9ea2ceb1a6cda97e0c25923f3a6edfbd2a2625a1 (patch) | |
| tree | 199b34a47eea176961286e65fc1a2bd9a41d5da1 | |
| parent | 8dd701eb89f844e2841c071fd9c62939980155cb (diff) | |
| download | ruby-9ea2ceb1a6cda97e0c25923f3a6edfbd2a2625a1.tar.gz ruby-9ea2ceb1a6cda97e0c25923f3a6edfbd2a2625a1.tar.xz ruby-9ea2ceb1a6cda97e0c25923f3a6edfbd2a2625a1.zip | |
* io.c (pipe_open): should be rb_pid_t.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23355 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | io.c | 2 | ||||
| -rw-r--r-- | version.h | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -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. @@ -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; @@ -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[]; |
