summaryrefslogtreecommitdiff
path: root/Kernel/RTC.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/RTC.cpp')
-rw-r--r--Kernel/RTC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/RTC.cpp b/Kernel/RTC.cpp
index ac5ba4acd5..9e50d5a7c4 100644
--- a/Kernel/RTC.cpp
+++ b/Kernel/RTC.cpp
@@ -8,7 +8,7 @@ static time_t s_boot_time;
void initialize()
{
- byte cmos_mode = CMOS::read(0x0b);
+ u8 cmos_mode = CMOS::read(0x0b);
cmos_mode |= 2; // 24 hour mode
cmos_mode |= 4; // No BCD mode
CMOS::write(0x0b, cmos_mode);