1
Fork 0

needless borrows found in clippy

This commit is contained in:
Oliver Schneider 2016-04-26 17:05:39 +02:00
parent 87faaec7a3
commit 6edc6a13d4
No known key found for this signature in database
GPG key ID: 56D6EEA0FC67AC46
18 changed files with 35 additions and 35 deletions

View file

@ -141,7 +141,7 @@ pub fn plugin_registrar(reg: &mut Registry) {
("clippy.toml", false)
};
let (conf, errors) = utils::conf::read_conf(&file_name, must_exist);
let (conf, errors) = utils::conf::read_conf(file_name, must_exist);
// all conf errors are non-fatal, we just use the default conf in case of error
for error in errors {