diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
commit | f6e27c2abe9da2ed1159cfc30618afc66bfbab79 (patch) | |
tree | 511a2b15828a5b431bc54a6c95d0986453d48753 /Kernel/Console.cpp | |
parent | d824442e3e4961e6df18aeb625f645a98760ac2a (diff) | |
download | serenity-f6e27c2abe9da2ed1159cfc30618afc66bfbab79.zip |
More coding style changes.
Diffstat (limited to 'Kernel/Console.cpp')
-rw-r--r-- | Kernel/Console.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Console.cpp b/Kernel/Console.cpp index 6ef1805ab8..32005a3381 100644 --- a/Kernel/Console.cpp +++ b/Kernel/Console.cpp @@ -23,7 +23,7 @@ Console::~Console() { } -bool Console::hasDataAvailableForRead() const +bool Console::has_data_available_for_reading() const { return false; } @@ -53,7 +53,7 @@ void Console::putChar(char ch) IO::out8(0xe9, ch); #endif if (m_implementation) - m_implementation->onConsoleReceive(ch); + m_implementation->on_sysconsole_receive(ch); } ConsoleImplementation::~ConsoleImplementation() |