Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubinius/rubinius
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 69e843f20bae
Choose a base ref
...
head repository: rubinius/rubinius
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e2a203177a82
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 1, 2015

  1. Copy the full SHA
    62546e1 View commit details
  2. Copy the full SHA
    e2a2031 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 kernel/platform/posix.rb
  2. +1 −1 vm/builtin/io.cpp
2 changes: 1 addition & 1 deletion kernel/platform/posix.rb
Original file line number Diff line number Diff line change
@@ -52,7 +52,7 @@ module FFI::Platform::POSIX
attach_function :ftruncate, [:int, :off_t], :int
attach_function :truncate, [:string, :off_t], :int
attach_function :write, [:int, :pointer, :size_t], :ssize_t
attach_function :select, [:int, :ulong_long, :ulong_long, :ulong_long, :pointer], :int
attach_function :select, [:int, :pointer, :pointer, :pointer, :pointer], :int

# Other I/O
attach_function :pipe, [:pointer], :int
2 changes: 1 addition & 1 deletion vm/builtin/io.cpp
Original file line number Diff line number Diff line change
@@ -1561,7 +1561,7 @@ namespace rubinius {
}

Object* FDSet::to_set(STATE) {
return ((Object*)&descriptor_set);
return ((Object*)descriptor_set);
}

}; // ends namespace rubinius