mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +00:00
Kernel: Remove obsolete size_t casts
This commit is contained in:
parent
9b14a8605a
commit
bf779e182e
8 changed files with 11 additions and 11 deletions
|
@ -67,7 +67,7 @@ KResultOr<size_t> Process::do_write(FileDescription& description, const UserOrKe
|
|||
return seek_result.error();
|
||||
}
|
||||
|
||||
while ((size_t)total_nwritten < data_size) {
|
||||
while (total_nwritten < data_size) {
|
||||
while (!description.can_write()) {
|
||||
if (!description.is_blocking()) {
|
||||
if (total_nwritten > 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue