Skip to content

Commit 235f8fa

Browse files
encypheredvalich
authored andcommitted
Fixed syntax error on ruby 1.8
1 parent b4c8f15 commit 235f8fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ruby-debug-ide.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def start_control(host, port, notify_dispatcher)
120120
# "localhost" and nil have problems on some systems.
121121
host ||= '127.0.0.1'
122122

123-
server = notify_dispatcher_if_needed(host, port, notify_dispatcher) do |real_port, port_changed = false|
123+
server = notify_dispatcher_if_needed(host, port, notify_dispatcher) do |real_port, port_changed|
124124
s = TCPServer.new(host, real_port)
125125
print_greeting_msg $stderr, host, real_port, port_changed ? "Subprocess" : "Fast" if defined? IDE_VERSION
126126
s

0 commit comments

Comments
 (0)