Ignore empty lines in kernel debugger
This commit is contained in:
parent
4e4490872e
commit
e1959cf3f2
@ -295,6 +295,10 @@ Debug_Prompt()
|
||||
found = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (strcmp(argv[0], "") == 0)
|
||||
continue;
|
||||
|
||||
if (!found)
|
||||
kprintf("Unknown command '%s'\n", argv[0]);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user