[ruby/reline] Remove unnecessary "*"

https://github.com/ruby/reline/commit/7b50638e24
This commit is contained in:
aycabta 2021-12-15 10:18:37 +09:00 коммит произвёл git
Родитель 7f2123bc08
Коммит 1c49d809f4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -329,8 +329,8 @@ class Reline::Windows
unless csbi = get_console_screen_buffer_info
return Reline::CursorPos.new(0, 0)
end
x = csbi[4, 2].unpack1('s*')
y = csbi[6, 2].unpack1('s*')
x = csbi[4, 2].unpack1('s')
y = csbi[6, 2].unpack1('s')
Reline::CursorPos.new(x, y)
end