io/OutputStream: use std::span

This commit is contained in:
Max Kellermann
2023-05-15 11:00:21 +02:00
parent e72d27566c
commit 8ba68fdb47
12 changed files with 40 additions and 42 deletions

View File

@@ -14,7 +14,7 @@ static void
Copy(OutputStream &dest, int src)
{
while (true) {
char buffer[4096];
std::byte buffer[4096];
ssize_t nbytes = read(src, buffer, sizeof(buffer));
if (nbytes <= 0) {
if (nbytes < 0)
@@ -23,7 +23,7 @@ Copy(OutputStream &dest, int src)
return;
}
dest.Write(buffer, nbytes);
dest.Write(std::span{buffer}.first(nbytes));
}
}