diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-16 02:39:30 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-16 02:39:30 +0000 |
commit | e981a61c53d5254139240829446eefb13b56a67b (patch) | |
tree | 6a5bef76e726bae2cde400b7a2dd38db7c130a40 | |
parent | 3fc5459977a9434c576a0e3d2686d42031bdb403 (diff) | |
download | ruby-e981a61c53d5254139240829446eefb13b56a67b.tar.gz |
process.c (close_unless_reserved): declare type of `fd' arg
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51262 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | process.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jul 16 11:38:21 2015 Eric Wong <e@80x24.org> + + * process.c (close_unless_reserved): declare type of `fd' arg + Thu Jul 16 08:47:29 2015 Eric Wong <e@80x24.org> * load.c (rb_construct_expanded_load_path): fstring expanded path @@ -294,7 +294,8 @@ extern ID ruby_static_id_status; #define ALWAYS_NEED_ENVP 0 #endif -static inline int close_unless_reserved(fd) +static inline int +close_unless_reserved(int fd) { /* Do nothing to the reserved fd because it should be closed in exec(2) due to the O_CLOEXEC or FD_CLOEXEC flag. */ |