summaryrefslogtreecommitdiff
path: root/Kernel/Console.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-12-03 00:39:25 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-12-03 00:39:25 +0100
commitf6e27c2abe9da2ed1159cfc30618afc66bfbab79 (patch)
tree511a2b15828a5b431bc54a6c95d0986453d48753 /Kernel/Console.cpp
parentd824442e3e4961e6df18aeb625f645a98760ac2a (diff)
downloadserenity-f6e27c2abe9da2ed1159cfc30618afc66bfbab79.zip
More coding style changes.
Diffstat (limited to 'Kernel/Console.cpp')
-rw-r--r--Kernel/Console.cpp4
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()