about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPhilipp Krones <hello@philkrones.com>2023-11-16 19:13:24 +0100
committerPhilipp Krones <hello@philkrones.com>2023-11-16 19:13:24 +0100
commit6246f0446afbe9abff18e8cc1ebaae7505f7cd9e (patch)
tree50ef81f3e7465a1187443aeb40d80d293f664884 /src
parent9aa2330e41b9d6e25fb357b54f5ae98448543752 (diff)
downloadrust-6246f0446afbe9abff18e8cc1ebaae7505f7cd9e.tar.gz
rust-6246f0446afbe9abff18e8cc1ebaae7505f7cd9e.zip
Merge commit 'edb720b199083f4107b858a8761648065bf38d86' into clippyup
Diffstat (limited to 'src')
-rw-r--r--src/driver.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver.rs b/src/driver.rs
index 7bb49d08da6..1ae8ac81695 100644
--- a/src/driver.rs
+++ b/src/driver.rs
@@ -148,7 +148,7 @@ impl rustc_driver::Callbacks for ClippyCallbacks {
             }
 
             let conf = clippy_config::Conf::read(sess, &conf_path);
-            clippy_lints::register_plugins(lint_store, sess, conf);
+            clippy_lints::register_lints(lint_store, conf);
             clippy_lints::register_pre_expansion_lints(lint_store, conf);
             clippy_lints::register_renamed(lint_store);
         }));