Decrease line length limit for stderr files

This commit is contained in:
Yuki Okushi 2020-01-21 06:43:01 +09:00
parent 67d0f443b3
commit c9d5cb9645

View file

@ -7,7 +7,7 @@ use std::io::prelude::*;
// The maximum length allowed for stderr files.
//
// We limit this because small files are easier to deal with than bigger files.
const LIMIT: usize = 275;
const LIMIT: usize = 245;
pub fn check() {
let stderr_files = stderr_files();