From 5041caf7a2023fdf28c46b73cc72eca7c7064f6b Mon Sep 17 00:00:00 2001 From: tomoaki Date: Mon, 12 Oct 2020 21:07:09 +0900 Subject: [PATCH] Avoid compile error of Mac Signed-off-by: tomoaki --- .cproject | 10 +++++----- MQTTSNGateway/GatewayTester/src/LTaskManager.cpp | 6 ++++-- MQTTSNGateway/GatewayTester/src/LTimer.h | 2 +- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.cproject b/.cproject index ade7cf0..f9a90f6 100644 --- a/.cproject +++ b/.cproject @@ -133,7 +133,9 @@ - + + + @@ -273,11 +275,9 @@ - + - - - + diff --git a/MQTTSNGateway/GatewayTester/src/LTaskManager.cpp b/MQTTSNGateway/GatewayTester/src/LTaskManager.cpp index f38182d..1ec298b 100644 --- a/MQTTSNGateway/GatewayTester/src/LTaskManager.cpp +++ b/MQTTSNGateway/GatewayTester/src/LTaskManager.cpp @@ -56,12 +56,14 @@ void LTaskManager::run(void){ int i = 0; char c = 0; bool cancelFlg = false; + TestList test = {0}; + TaskList task = {0}; if ( !theClientMode ) { theClient->getGwProxy()->getMessage(); - for (i = 0; _tests[i].testTask > 0; i++) + for (i = 0; _tests[i].testTask > test.testTask; i++) { PROMPT("Execute \"%s\" ? ( y/n ) : ", _tests[i].testLabel); while (true) @@ -118,7 +120,7 @@ void LTaskManager::run(void){ while (true) { theClient->getGwProxy()->getMessage(); - for (_index = 0; _tasks[_index].callback > 0; _index++) + for (_index = 0; _tasks[_index].callback > task.callback; _index++) { if ((_tasks[_index].prevTime + _tasks[_index].interval <= time(NULL)) && _tasks[_index].count == 0) diff --git a/MQTTSNGateway/GatewayTester/src/LTimer.h b/MQTTSNGateway/GatewayTester/src/LTimer.h index 9c666cf..cb44cc0 100644 --- a/MQTTSNGateway/GatewayTester/src/LTimer.h +++ b/MQTTSNGateway/GatewayTester/src/LTimer.h @@ -17,7 +17,7 @@ #ifndef TIMER_H_ #define TIMER_H_ -#include +#include #include "LMqttsnClientApp.h"