1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:35:06 +00:00

Kernel: Convert klog() => dmesgln() in filesystem code

This commit is contained in:
Andreas Kling 2021-03-09 20:17:57 +01:00
parent 2fc684f6bc
commit 10f10abaa3
3 changed files with 15 additions and 18 deletions

View file

@ -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);
}