diff options
Diffstat (limited to 'Kernel/TTY/TTY.h')
-rw-r--r-- | Kernel/TTY/TTY.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/TTY/TTY.h b/Kernel/TTY/TTY.h index 897e15b57c..eb1ee2134e 100644 --- a/Kernel/TTY/TTY.h +++ b/Kernel/TTY/TTY.h @@ -53,7 +53,7 @@ protected: virtual ErrorOr<size_t> on_tty_write(const UserOrKernelBuffer&, size_t) = 0; void set_size(unsigned short columns, unsigned short rows); - TTY(unsigned major, unsigned minor); + TTY(MajorNumber major, MinorNumber minor); void emit(u8, bool do_evaluate_block_conditions = false); void echo_with_processing(u8); |