cat: fixed indentation

This commit is contained in:
kevgeniy 2016-11-18 22:30:12 +03:00
parent 0d56009c3a
commit 6d13bcf2da

View file

@ -238,8 +238,7 @@ fn write_nonprint_to_end<W: Write>(in_buf: &[u8], writer: &mut W, tab: &[u8]) ->
128...159 => writer.write_all(&['M' as u8, '-' as u8, '^' as u8, byte - 64]), 128...159 => writer.write_all(&['M' as u8, '-' as u8, '^' as u8, byte - 64]),
160...254 => writer.write_all(&['M' as u8, '-' as u8, byte - 128]), 160...254 => writer.write_all(&['M' as u8, '-' as u8, byte - 128]),
_ => writer.write_all(&['M' as u8, '-' as u8, '^' as u8, 63]), _ => writer.write_all(&['M' as u8, '-' as u8, '^' as u8, 63]),
} }.unwrap();
.unwrap();
count += 1; count += 1;
} }
if count != in_buf.len() { count + 1 } else { 0 } if count != in_buf.len() { count + 1 } else { 0 }