Fixed all build warnings

This commit is contained in:
Gunnar Skjold
2022-10-13 20:33:59 +02:00
parent 6d81b0a856
commit fa299198fc
8 changed files with 11 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ void DnbCurrParser::flush() {
}
size_t DnbCurrParser::write(const uint8_t *buffer, size_t size) {
for(int i = 0; i < size; i++) {
for(size_t i = 0; i < size; i++) {
write(buffer[i]);
}
return size;