about summary refs log tree commit diff
path: root/clippy_dev/src
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2019-07-17 21:13:33 +0200
committerPhilipp Hansch <dev@phansch.net>2019-07-17 21:13:33 +0200
commit35b7a98f4fd228a826c88499c5374acdd772e09f (patch)
tree74bc27b789ac9d8b8659e18a917325bb5eb66eb9 /clippy_dev/src
parent0626674d3cadf95a3010c082b342aeb542ba1f5b (diff)
downloadrust-35b7a98f4fd228a826c88499c5374acdd772e09f.tar.gz
rust-35b7a98f4fd228a826c88499c5374acdd772e09f.zip
Decrease maximum length for stderr files
Now at 275.
Diffstat (limited to 'clippy_dev/src')
-rw-r--r--clippy_dev/src/stderr_length_check.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/stderr_length_check.rs b/clippy_dev/src/stderr_length_check.rs
index ba8e5f83ef4..3049c45ddc8 100644
--- a/clippy_dev/src/stderr_length_check.rs
+++ b/clippy_dev/src/stderr_length_check.rs
@@ -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();