1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-09 00:00:03 +01:00

Remove typo

This commit is contained in:
Stefan Lankes 2015-08-18 00:16:28 +02:00
parent d117d351ae
commit 35f27afba0

View file

@ -115,7 +115,7 @@ void gdt_install(void)
GDT_FLAG_RING3 | GDT_FLAG_SEGMENT | GDT_FLAG_CODESEG | GDT_FLAG_PRESENT, GDT_FLAG_32_BIT | GDT_FLAG_4K_GRAN);
/*
* Create data segment for user-space applications (ring 3)
* Create data segment for 32bit user-space applications (ring 3)
*/
gdt_set_gate(num++, 0, 0xFFFFFFFF,
GDT_FLAG_RING3 | GDT_FLAG_SEGMENT | GDT_FLAG_DATASEG | GDT_FLAG_PRESENT, GDT_FLAG_32_BIT | GDT_FLAG_4K_GRAN);