File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -750,17 +750,17 @@ void ntpServerSetState(uint8_t newState)
750
750
if ((settings.debugNtp || PERIODIC_DISPLAY (PD_NTP_SERVER_STATE)) && (!inMainMenu))
751
751
{
752
752
if (ntpServerState == newState)
753
- systemPrint (" *" );
753
+ systemPrint (" NTP Server: *" );
754
754
else
755
- systemPrintf (" %s --> " , ntpServerStateName[ntpServerState]);
755
+ systemPrintf (" NTP Server: %s --> " , ntpServerStateName[ntpServerState]);
756
756
}
757
757
ntpServerState = newState;
758
758
if (settings.debugNtp || PERIODIC_DISPLAY (PD_NTP_SERVER_STATE))
759
759
{
760
760
PERIODIC_CLEAR (PD_NTP_SERVER_STATE);
761
761
if (newState >= NTP_STATE_MAX)
762
762
{
763
- systemPrintf (" Unknown NTP Server state: %d\r\n " , newState);
763
+ systemPrintf (" Unknown state: %d\r\n " , newState);
764
764
reportFatalError (" Unknown NTP Server state" );
765
765
}
766
766
else if (!inMainMenu)
You can’t perform that action at this time.
0 commit comments