mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-05-19 11:45:31 +01:00
update cspot
This commit is contained in:
@@ -18,8 +18,8 @@ void bell::BinaryReader::close() {
|
||||
}
|
||||
|
||||
void bell::BinaryReader::skip(size_t pos) {
|
||||
uint8_t b[pos];
|
||||
stream->read((uint8_t *)b, pos);
|
||||
std::vector<uint8_t> b(pos);
|
||||
stream->read(&b[0], pos);
|
||||
}
|
||||
|
||||
int32_t bell::BinaryReader::readInt() {
|
||||
|
||||
Reference in New Issue
Block a user