diff --git a/vlib/os/os.c.v b/vlib/os/os.c.v index 1a106cc934..af73a15c1c 100644 --- a/vlib/os/os.c.v +++ b/vlib/os/os.c.v @@ -510,7 +510,7 @@ pub fn get_raw_line() string { if !res || bytes_read == 0 { break } - if *pos == `\n` || *pos == `\r` { + if *pos == `\n` { offset++ break }