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

@@ -135,7 +135,7 @@ bool AirTime::isTxAllowedAirUtil()
if (utilizationTXPercent() < myRegion->dutyCycle * polite_duty_cycle_percent / 100) {
return true;
} else {
LOG_WARN("Tx air utilization is >%d percent. Skipping this opportunity to send.\n", myRegion->dutyCycle * polite_duty_cycle_percent / 100);
LOG_WARN("Tx air utilization is >%f percent. Skipping this opportunity to send.\n", myRegion->dutyCycle * polite_duty_cycle_percent / 100);
return false;
}
}