diff options
Diffstat (limited to 'Kernel/Devices/BlockDevice.h')
-rw-r--r-- | Kernel/Devices/BlockDevice.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Kernel/Devices/BlockDevice.h b/Kernel/Devices/BlockDevice.h index c96d4d3185..d76d90614d 100644 --- a/Kernel/Devices/BlockDevice.h +++ b/Kernel/Devices/BlockDevice.h @@ -10,7 +10,10 @@ public: virtual bool is_seekable() const override { return true; } protected: - BlockDevice(unsigned major, unsigned minor) : Device(major, minor) { } + BlockDevice(unsigned major, unsigned minor) + : Device(major, minor) + { + } private: virtual bool is_block_device() const final { return true; } |