mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Kernel: Remove obsolete size_t casts
This commit is contained in:
committed by
Andreas Kling
parent
9b14a8605a
commit
bf779e182e
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user