Fix braces + init_paging args
This commit is contained in:
@@ -34,8 +34,7 @@ void _putchar(char character)
|
||||
void kputs(const char* str)
|
||||
{
|
||||
size_t i=0;
|
||||
while (str[i] != 0)
|
||||
{
|
||||
while (str[i] != 0) {
|
||||
_putchar(str[i]);
|
||||
i++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user