Kernel: Return a correct name string of async write request

This commit is contained in:
Liav A 2020-12-17 18:31:36 +02:00 committed by Andreas Kling
parent 4c8dbc908c
commit f36feb42bd
Notes: sideshowbarker 2024-07-19 00:46:48 +09:00

View file

@ -55,7 +55,7 @@ public:
case Read:
return "BlockDeviceRequest (read)";
case Write:
return "BlockDeviceRequest (read)";
return "BlockDeviceRequest (write)";
default:
ASSERT_NOT_REACHED();
}