Fix two print format specifiers

This commit is contained in:
GUVWAF
2023-01-19 13:14:20 +01:00
committed by Thomas Göttgens
parent c04980084a
commit 836559cda1
2 changed files with 2 additions and 2 deletions

View File

@@ -275,7 +275,7 @@ void printPacket(const char *prefix, const MeshPacket *p)
LOG_DEBUG(" rxSNR=%g", p->rx_snr);
}
if (p->rx_rssi != 0) {
LOG_DEBUG(" rxRSSI=%g", p->rx_rssi);
LOG_DEBUG(" rxRSSI=%i", p->rx_rssi);
}
if (p->priority != 0)
LOG_DEBUG(" priority=%d", p->priority);