From be4e79941c99f98656fec66a9c827aba3be4e55d Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Wed, 4 Nov 2020 19:57:56 -0800 Subject: [PATCH] fixed bug/typo with child.waitExit() timeout --- microstack/ILibParsers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microstack/ILibParsers.c b/microstack/ILibParsers.c index f50d638..dd73cc7 100644 --- a/microstack/ILibParsers.c +++ b/microstack/ILibParsers.c @@ -2354,7 +2354,7 @@ ILibExportMethod void ILibChain_Continue(void *Chain, ILibChain_Link **modules, if (maxTimeout > 0) { gettimeofday(&tv, NULL); - if (tv.tv_sec < (startTime.tv_sec + maxTimeout / 1000)) + if (tv.tv_sec > (startTime.tv_sec + maxTimeout / 1000)) { root->continuationState = ILibChain_ContinuationState_END_CONTINUE; break;