Skip to content

Commit 7d40a54

Browse files
committed
Fix invalid conversion error on Particle Argon (closes #1035)
1 parent 2507ee2 commit 7d40a54

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ HEAD
55
----
66

77
* Fixed assignment of `JsonDocument` to `JsonVariant` (issue #1023)
8+
* Fix invalid conversion error on Particle Argon (issue #1035)
89

910
v6.11.1 (2019-06-21)
1011
-------

src/ArduinoJson/Deserialization/ArduinoStreamReader.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ struct ArduinoStreamReader {
1818

1919
int read() {
2020
// don't use _stream.read() as it ignores the timeout
21-
uint8_t c;
21+
char c;
2222
return _stream.readBytes(&c, 1) ? c : -1;
2323
}
2424
};

0 commit comments

Comments
 (0)