Removed an instance of shadowing
This commit is contained in:
parent
b72c6a5bc9
commit
ffd6c3f095
|
@ -79,12 +79,12 @@ namespace Pinetime {
|
||||||
airquality->eventType = static_cast<WeatherData::eventtype>(tmpEventType);
|
airquality->eventType = static_cast<WeatherData::eventtype>(tmpEventType);
|
||||||
airquality->expires = tmpExpires;
|
airquality->expires = tmpExpires;
|
||||||
|
|
||||||
UsefulBufC String; // TODO: Everything ok with lifecycle here?
|
UsefulBufC stringBuf; // TODO: Everything ok with lifecycle here?
|
||||||
QCBORDecode_GetTextStringInMapSZ(&decodeContext, "Polluter", &String);
|
QCBORDecode_GetTextStringInMapSZ(&decodeContext, "Polluter", &stringBuf);
|
||||||
if (UsefulBuf_IsNULLOrEmptyC(String) != 0) {
|
if (UsefulBuf_IsNULLOrEmptyC(stringBuf) != 0) {
|
||||||
return BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
return BLE_ATT_ERR_INVALID_ATTR_VALUE_LEN;
|
||||||
}
|
}
|
||||||
airquality->polluter = std::string(static_cast<const char*>(String.ptr), String.len);
|
airquality->polluter = std::string(static_cast<const char*>(stringBuf.ptr), stringBuf.len);
|
||||||
|
|
||||||
int64_t tmpAmount = 0;
|
int64_t tmpAmount = 0;
|
||||||
QCBORDecode_GetInt64InMapSZ(&decodeContext, "Amount", &tmpAmount);
|
QCBORDecode_GetInt64InMapSZ(&decodeContext, "Amount", &tmpAmount);
|
||||||
|
|
Loading…
Reference in a new issue