Fix a compiler warning

This commit is contained in:
fvanroie 2021-05-05 23:37:23 +02:00
parent 1275b32a5e
commit 99a83c2f3c

View File

@ -57,6 +57,7 @@ static void debugPrintTimestamp(int level, Print* _logOutput)
int rslt = gettimeofday(&curTime, NULL); int rslt = gettimeofday(&curTime, NULL);
time_t t = curTime.tv_sec; time_t t = curTime.tv_sec;
tm* timeinfo = localtime(&t); tm* timeinfo = localtime(&t);
(void*)rslt;
debugSendAnsiCode(F(TERM_COLOR_CYAN), _logOutput); debugSendAnsiCode(F(TERM_COLOR_CYAN), _logOutput);