Skip to content
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