From d8d8e1982a2f478145c84c35009a81f564206310 Mon Sep 17 00:00:00 2001 From: Geoffrey Merck Date: Fri, 31 Dec 2021 08:05:15 +0100 Subject: [PATCH] Make it unsigned --- APRSFixedIdFrameProvider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/APRSFixedIdFrameProvider.cpp b/APRSFixedIdFrameProvider.cpp index 80079fb..c75cbe9 100644 --- a/APRSFixedIdFrameProvider.cpp +++ b/APRSFixedIdFrameProvider.cpp @@ -127,7 +127,7 @@ bool CAPRSFixedIdFrameProvider::buildAPRSFramesInt(const std::string& gateway, c frames.push_back(output); } - setTimeout(20U * 60);//20 minutes, plenty enough for fixed + setTimeout(20U * 60U);//20 minutes, plenty enough for fixed return true; } \ No newline at end of file