fix bufferedwriter::write(u8)

This commit is contained in:
Theis Pieter Hollebeek 2024-12-12 11:32:58 +01:00
parent 7b151e1faf
commit 803230840b

View File

@ -23,6 +23,7 @@ auto sliger::rpc::BufferedWriter::write(uint8_t byte) -> Res<Unit>
} }
} }
this->buffer[this->occupied] = byte; this->buffer[this->occupied] = byte;
this->occupied += 1;
return Unit {}; return Unit {};
} }