Skip to content

Commit 61eaaaa

Browse files
fixup! Improving parse function in modem class
1 parent 6069b31 commit 61eaaaa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/WiFiS3/src/Modem.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ ModemClass::ParseResult ModemClass::buf_read(const string &prompt, string &data_
203203
_serial_debug->print("<SP>");
204204
} else if(c < ' ') {
205205
_serial_debug->print("<");
206-
_serial_debug->print((int)c);
206+
_serial_debug->print((unsigned int)c);
207207
_serial_debug->print(">");
208208
} else {
209209
_serial_debug->print(c);

0 commit comments

Comments
 (0)