diff --git a/FreeRTOS-Plus/Demo/coreSNTP_Windows_Simulator/SNTPClientTask.c b/FreeRTOS-Plus/Demo/coreSNTP_Windows_Simulator/SNTPClientTask.c index 4b5fa8cb38..cd2b24f393 100644 --- a/FreeRTOS-Plus/Demo/coreSNTP_Windows_Simulator/SNTPClientTask.c +++ b/FreeRTOS-Plus/Demo/coreSNTP_Windows_Simulator/SNTPClientTask.c @@ -695,7 +695,7 @@ void calculateCurrentTime( UTCTime_t * pBaseTime, /* Assert when the UTC timestamp rollover. */ configASSERT( currentTimeSecs > UINT32_MAX ); - /* Subtract an extra second as timestamp 0 represents the epoch for + /* Subtract an extra second as timestamp 0 represents the epoch for * UTC era 1. */ LogError( ( "UTC timestamp rollover." ) ); pCurrentTime->secs = ( uint32_t ) ( currentTimeSecs - UINT32_MAX - 1 );