mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-01 19:26:20 +02:00
avoid compile warning about uninitialized pointers
This commit is contained in:
parent
1dc66037ad
commit
41ce98d2df
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ class Web {
|
|||
|
||||
// NRF Statistics
|
||||
stat = mApp->getStatistics();
|
||||
uint32_t *nrfSendCnt, *nrfRetransmits;
|
||||
uint32_t *nrfSendCnt=NULL, *nrfRetransmits=NULL;
|
||||
mApp->getNrfRadioCounters(nrfSendCnt, nrfRetransmits);
|
||||
metrics += radioStatistic(F("rx_success"), stat->rxSuccess);
|
||||
metrics += radioStatistic(F("rx_fail"), stat->rxFail);
|
||||
|
|
Loading…
Add table
Reference in a new issue