diff options
author | Liav A <liavalb@gmail.com> | 2020-12-17 18:31:36 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-12-17 19:36:56 +0100 |
commit | f36feb42bddcac5b24b00ddd59460955bc2ea762 (patch) | |
tree | e17548ec05c948b8580286a483c91a882950ee2a /Kernel/Devices | |
parent | 4c8dbc908c352ca242e565715b15510c4c7bfd3d (diff) | |
download | serenity-f36feb42bddcac5b24b00ddd59460955bc2ea762.zip |
Kernel: Return a correct name string of async write request
Diffstat (limited to 'Kernel/Devices')
-rw-r--r-- | Kernel/Devices/BlockDevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Devices/BlockDevice.h b/Kernel/Devices/BlockDevice.h index 975f46b7a8..35ac1b8f68 100644 --- a/Kernel/Devices/BlockDevice.h +++ b/Kernel/Devices/BlockDevice.h @@ -55,7 +55,7 @@ public: case Read: return "BlockDeviceRequest (read)"; case Write: - return "BlockDeviceRequest (read)"; + return "BlockDeviceRequest (write)"; default: ASSERT_NOT_REACHED(); } |