diff options
author | Linus Groh <mail@linusgroh.de> | 2021-04-18 10:30:03 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-18 10:30:03 +0200 |
commit | 2b0c361d04b519b20bfb70a34c07de579a93fafd (patch) | |
tree | f2a4d12d02801fe5bd0abf1ac2c068b540d75a45 /Kernel/Storage/AHCIPort.cpp | |
parent | cebd3f740b6fd2fd0da30ed92310a968cf6df44a (diff) | |
download | serenity-2b0c361d04b519b20bfb70a34c07de579a93fafd.zip |
Everywhere: Fix a bunch of typos
Diffstat (limited to 'Kernel/Storage/AHCIPort.cpp')
-rw-r--r-- | Kernel/Storage/AHCIPort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Storage/AHCIPort.cpp b/Kernel/Storage/AHCIPort.cpp index 1ef3317e05..c9249ad6c4 100644 --- a/Kernel/Storage/AHCIPort.cpp +++ b/Kernel/Storage/AHCIPort.cpp @@ -516,7 +516,7 @@ bool AHCIPort::spin_until_ready() const spin++; } if (spin == 100) { - dbgln_if(AHCI_DEBUG, "AHCI Port {}: SPIN exceeded 100 miliseconds threshold", representative_port_index()); + dbgln_if(AHCI_DEBUG, "AHCI Port {}: SPIN exceeded 100 milliseconds threshold", representative_port_index()); return false; } return true; |