mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
AK: Rename Stream::write_entire_buffer to Stream::write_until_depleted
No functional changes.
This commit is contained in:
parent
a3f73e7d85
commit
ecd1862859
46 changed files with 141 additions and 141 deletions
|
@ -267,7 +267,7 @@ ErrorOr<ByteBuffer> Bitmap::serialize_to_byte_buffer() const
|
|||
}
|
||||
|
||||
auto size = size_in_bytes();
|
||||
TRY(stream.write_entire_buffer({ scanline(0), size }));
|
||||
TRY(stream.write_until_depleted({ scanline(0), size }));
|
||||
|
||||
VERIFY(TRY(stream.tell()) == TRY(stream.size()));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue