summaryrefslogtreecommitdiff
path: root/Kernel/Bus/VirtIO/Device.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Bus/VirtIO/Device.h')
-rw-r--r--Kernel/Bus/VirtIO/Device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/VirtIO/Device.h b/Kernel/Bus/VirtIO/Device.h
index a46adebcab..993574a1c7 100644
--- a/Kernel/Bus/VirtIO/Device.h
+++ b/Kernel/Bus/VirtIO/Device.h
@@ -121,7 +121,7 @@ protected:
const Configuration* get_config(ConfigurationType cfg_type, u32 index = 0) const
{
- for (auto& cfg : m_configs) {
+ for (auto const& cfg : m_configs) {
if (cfg.cfg_type != cfg_type)
continue;
if (index > 0) {