summaryrefslogtreecommitdiff
path: root/kernel/arch/i386/mmu.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/arch/i386/mmu.c')
-rw-r--r--kernel/arch/i386/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/arch/i386/mmu.c b/kernel/arch/i386/mmu.c
index a505639..4f6d631 100644
--- a/kernel/arch/i386/mmu.c
+++ b/kernel/arch/i386/mmu.c
@@ -148,7 +148,7 @@ int write_to_frame(u32 frame_address, u8 on) {
u32 frame = frame_address / 0x1000;
if (on) {
int frame_is_used = (0 != (tmp_small_frames[INDEX_FROM_BIT(frame)] &
- ((u32)0x1 << OFFSET_FROM_BIT(frame))));
+ ((u32)0x1 << OFFSET_FROM_BIT(frame))));
if (frame_is_used) {
return 0;
}