1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:27:35 +00:00

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

View file

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