mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Fix typo in PS/2 error string.
Discovered by Alexandros Alexandrou.
This commit is contained in:
parent
b15d30ea0c
commit
16c5738a20
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ void Init(PS2Device* keyboard, PS2Device* mouse)
|
|||
if ( byte != 0x55 )
|
||||
{
|
||||
Log::PrintF("[PS/2 controller] Self-test failure resulted in "
|
||||
"0x%02X instead of 0xAA\n", byte);
|
||||
"0x%02X instead of 0x55\n", byte);
|
||||
return;
|
||||
}
|
||||
if ( dual )
|
||||
|
|
Loading…
Reference in a new issue