mirror of
https://github.com/neovim/neovim.git
synced 2026-01-30 09:01:07 +10:00
Problem: Bug was introduced because `os_open` returns `-errno` in case of an error instead of just `-1` which was returned by `mch_open`. Solution: Check return value with `< 0` instead of `== -1`.