From 99a83c2f3cef2f25bff757a3f9dde6636db61d65 Mon Sep 17 00:00:00 2001 From: fvanroie <15969459+fvanroie@users.noreply.github.com> Date: Wed, 5 May 2021 23:37:23 +0200 Subject: [PATCH] Fix a compiler warning --- src/hasp_debug.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hasp_debug.cpp b/src/hasp_debug.cpp index 748eb1ff..d0e7611b 100644 --- a/src/hasp_debug.cpp +++ b/src/hasp_debug.cpp @@ -57,6 +57,7 @@ static void debugPrintTimestamp(int level, Print* _logOutput) int rslt = gettimeofday(&curTime, NULL); time_t t = curTime.tv_sec; tm* timeinfo = localtime(&t); + (void*)rslt; debugSendAnsiCode(F(TERM_COLOR_CYAN), _logOutput);