mirror of
				https://github.com/KevinMidboe/TinyGSM.git
				synced 2025-10-29 18:00:18 +00:00 
			
		
		
		
	Oops, fixed some signed/unsigned comparisons
This commit is contained in:
		| @@ -646,7 +646,7 @@ protected: | ||||
|     streamSkipUntil(',');  // skip port | ||||
|     streamSkipUntil(',');  // skip connection type (TCP/UDP) | ||||
|     int len = stream.readStringUntil('\n').toInt();  // read length | ||||
|     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 | ||||
|       sockets[mux]->sock_available--; | ||||
|       // ^^ One less character available after moving from modem's FIFO to our FIFO | ||||
|   | ||||
		Reference in New Issue
	
	Block a user