Decrease maximum length for stderr files

Now at 275.
This commit is contained in:
Philipp Hansch 2019-07-17 21:13:33 +02:00
parent 0626674d3c
commit 35b7a98f4f
No known key found for this signature in database
GPG key ID: 82AA61CAA11397E6

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 = 320;
const LIMIT: usize = 275;
pub fn check() {
let stderr_files = stderr_files();