From 5b815785a7bc6b629ffeb0cff6e8b0c8ac94f259 Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com> Date: Fri, 8 Nov 2024 07:20:46 -0300 Subject: [PATCH] Fix warning. --- src/common/tests/CvtTestUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/tests/CvtTestUtils.h b/src/common/tests/CvtTestUtils.h index fc0ea1eb90..ab1585878b 100644 --- a/src/common/tests/CvtTestUtils.h +++ b/src/common/tests/CvtTestUtils.h @@ -122,7 +122,7 @@ public: return m_mockGetLocalDateFunc(); } - ISC_TIMESTAMP getCurrentGmtTimeStamp() override { ISC_TIMESTAMP ts; return ts; } + ISC_TIMESTAMP getCurrentGmtTimeStamp() override { return {0, 0}; } USHORT getSessionTimeZone() override { return 1439; } // 1439 is ONE_DAY, so we have no offset void isVersion4(bool& v4) override { }