mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-08 02:26:10 +00:00
Kernel: Report the correct name for NullDevice.
This commit is contained in:
parent
fa452fadca
commit
a0b55987d3
Notes:
sideshowbarker
2024-07-19 15:41:11 +09:00
Author: https://github.com/awesomekling
Commit: a0b55987d3
1 changed files with 1 additions and 1 deletions
|
@ -16,6 +16,6 @@ private:
|
||||||
virtual ssize_t write(Process&, const byte* buffer, size_t bufferSize) override;
|
virtual ssize_t write(Process&, const byte* buffer, size_t bufferSize) override;
|
||||||
virtual bool can_write(Process&) const override { return true; }
|
virtual bool can_write(Process&) const override { return true; }
|
||||||
virtual bool can_read(Process&) const override;
|
virtual bool can_read(Process&) const override;
|
||||||
virtual const char* class_name() const override { return "CharacterDevice"; }
|
virtual const char* class_name() const override { return "NullDevice"; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue