We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76badaf commit 4dda60eCopy full SHA for 4dda60e
src/Datapoint/Converter.cpp
@@ -20,7 +20,7 @@ int Converter::toString(char* buf, std::size_t maxLen, VariantValue value) const
20
void Converter::fromString(const char* buf, VariantValue* result) const {
21
(void) buf;
22
uint64_t retVal = 0;
23
- result = VariantValue(retVal);
+ *result = VariantValue(retVal);
24
}
25
26
VariantValue Div10Convert::decode(const uint8_t* data, uint8_t len) const {
0 commit comments