diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-31 08:04:13 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-31 08:04:13 +0000 |
| commit | e046d9a2607fe077d2dd889866e0ff7795ce0f30 (patch) | |
| tree | 99e89f9159cc74694089489b9100949f03f60903 /process.c | |
| parent | 31b49050152367213e15b875c335dc314ea196e2 (diff) | |
| download | ruby-e046d9a2607fe077d2dd889866e0ff7795ce0f30.tar.gz ruby-e046d9a2607fe077d2dd889866e0ff7795ce0f30.tar.xz ruby-e046d9a2607fe077d2dd889866e0ff7795ce0f30.zip | |
* process.c (last_status_set): nothing returned, should be void.
* ext/socket/socket.c (load_addr_info): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
| -rw-r--r-- | process.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -95,7 +95,7 @@ get_ppid() static VALUE rb_cProcStatus; VALUE rb_last_status = Qnil; -static VALUE +static void last_status_set(status) int status; { @@ -653,7 +653,7 @@ proc_spawn_v(argv, prog) } before_exec(); status = spawnv(P_WAIT, prog, argv); - after_exec(); + after_exec(); return status; } |
