Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation on newer clang #93

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ task :default => :test
# Packaging
# ==========================================================

GEMSPEC = eval(File.read('posix-spawn.gemspec'))
GEMSPEC = eval(File.read('posix-spawn.gemspec'), binding, __FILE__, __LINE__)

require 'rubygems/package_task'
Gem::PackageTask.new(GEMSPEC) do |pkg|
Expand Down
3 changes: 2 additions & 1 deletion ext/posix-spawn.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,9 @@ posixspawn_file_actions_addopen(VALUE key, VALUE val, posix_spawn_file_actions_t
* if not.
*/
static int
posixspawn_file_actions_operations_iter(VALUE key, VALUE val, posix_spawn_file_actions_t *fops)
posixspawn_file_actions_operations_iter(VALUE key, VALUE val, VALUE fops_value)
{
posix_spawn_file_actions_t *fops = (posix_spawn_file_actions_t *)fops_value;
int act;

act = posixspawn_file_actions_addclose(key, val, fops);
Expand Down