diff options
Diffstat (limited to 'Kernel/TTY.h')
-rw-r--r-- | Kernel/TTY.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY.h b/Kernel/TTY.h index 1770e53a3c..856e8c79d8 100644 --- a/Kernel/TTY.h +++ b/Kernel/TTY.h @@ -16,7 +16,7 @@ public: pid_t pgid() const { return m_pgid; } protected: - virtual bool isTTY() const final { return true; } + virtual bool isTTY() const final override { return true; } TTY(unsigned major, unsigned minor); void emit(byte); |