about summary refs log tree commit diff
path: root/clippy_dev/src
diff options
context:
space:
mode:
authorMichael Wright <mikerite@lavabit.com>2019-06-25 07:30:29 +0200
committerflip1995 <hello@philkrones.com>2019-07-07 15:11:37 +0200
commit11707f3443c44c2cdfe99a0873dacf26e8681352 (patch)
treea8c8a0e2756d06f1cc9f0fbec2347a67adcfd351 /clippy_dev/src
parent4c771c3478d79d0d617752324f215d9bf5fe7512 (diff)
downloadrust-11707f3443c44c2cdfe99a0873dacf26e8681352.tar.gz
rust-11707f3443c44c2cdfe99a0873dacf26e8681352.zip
Fix crash on `dev --limit-stderr-length`
Diffstat (limited to 'clippy_dev/src')
-rw-r--r--clippy_dev/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_dev/src/main.rs b/clippy_dev/src/main.rs
index 8fdc4254d0c..5fa7a87a5de 100644
--- a/clippy_dev/src/main.rs
+++ b/clippy_dev/src/main.rs
@@ -77,7 +77,7 @@ fn main() {
                 update_lints(&UpdateMode::Change);
             }
         },
-        _ => unreachable!(),
+        _ => {},
     }
 }