mirror of
https://github.com/RGBCube/serenity
synced 2025-05-26 01:55:08 +00:00
Kernel: Convert klog() => AK::Format in a handful of places
This commit is contained in:
parent
ad2f95e35a
commit
73e06a1983
9 changed files with 16 additions and 17 deletions
|
@ -1521,7 +1521,7 @@ ssize_t ProcFSInode::write_bytes(off_t offset, ssize_t size, const UserOrKernelB
|
|||
VERIFY(offset == 0);
|
||||
ssize_t nwritten = write_callback(identifier(), buffer, (size_t)size);
|
||||
if (nwritten < 0)
|
||||
klog() << "ProcFS: Writing " << size << " bytes failed: " << nwritten;
|
||||
dbgln("ProcFS: Writing {} bytes failed: {}", size, nwritten);
|
||||
return nwritten;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue