mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 10:18:15 +09:00
Kernel: Convert klog() => dmesgln() in filesystem code
This commit is contained in:
parent
2fc684f6bc
commit
10f10abaa3
Notes:
sideshowbarker
2024-07-18 21:34:08 +09:00
Author: https://github.com/awesomekling
Commit: 10f10abaa3
3 changed files with 15 additions and 18 deletions
|
@ -92,7 +92,7 @@ KResultOr<NonnullOwnPtr<KBuffer>> Inode::read_entire(FileDescription* descriptio
|
|||
break;
|
||||
}
|
||||
if (nread < 0) {
|
||||
klog() << "Inode::read_entire: ERROR: " << nread;
|
||||
dmesgln("Inode::read_entire: Error: {}", nread);
|
||||
return KResult((ErrnoCode)-nread);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue