summaryrefslogtreecommitdiff
path: root/Kernel/Devices/Device.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:43:58 +0200
commitbc951ca565d137b2d1bd158e5473bd42cf568d10 (patch)
treed726fbd8f661b52a7c3d549a5f08f98e0443ca0c /Kernel/Devices/Device.cpp
parent98eeb8f22df509b2a711de0e4a01660b6646f229 (diff)
downloadserenity-bc951ca565d137b2d1bd158e5473bd42cf568d10.zip
Kernel: Run clang-format on everything.
Diffstat (limited to 'Kernel/Devices/Device.cpp')
-rw-r--r--Kernel/Devices/Device.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/Device.cpp b/Kernel/Devices/Device.cpp
index 24a5274456..601ff9fa71 100644
--- a/Kernel/Devices/Device.cpp
+++ b/Kernel/Devices/Device.cpp
@@ -3,8 +3,8 @@
#include <LibC/errno_numbers.h>
Device::Device(unsigned major, unsigned minor)
- : m_major(major)
- , m_minor(minor)
+ : m_major(major)
+ , m_minor(minor)
{
VFS::the().register_device({}, *this);
}