Oops, fixed some signed/unsigned comparisons

This commit is contained in:
Sara Damiano
2019-09-05 13:23:46 -04:00
parent 05bee3294a
commit 6c0ec95a7e
10 changed files with 13 additions and 11 deletions

View File

@@ -622,7 +622,7 @@ protected:
int len = stream.readStringUntil(',').toInt();
streamSkipUntil('\"');
for (size_t i=0; i<len; i++) {
for (int i=0; i<len; i++) {
TINY_GSM_MODEM_STREAM_TO_MUX_FIFO_WITH_DOUBLE_TIMEOUT
}
streamSkipUntil('\"');