mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-07-23 23:37:37 +02:00
Fix invalid conversion error on Particle Argon (closes #1035)
This commit is contained in:
@ -18,7 +18,7 @@ struct ArduinoStreamReader {
|
||||
|
||||
int read() {
|
||||
// don't use _stream.read() as it ignores the timeout
|
||||
uint8_t c;
|
||||
char c;
|
||||
return _stream.readBytes(&c, 1) ? c : -1;
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user