Core: Fixed warning

(cherry picked from commit b29005925e)
This commit is contained in:
Vincent-Michael
2016-05-08 00:43:17 +02:00
committed by vincent-michael
parent 3a74b52ddc
commit 993f6b393c

View File

@@ -328,9 +328,9 @@ private:
}
else
{
delay = TimeStringToSecs(std::string(args));
delay = TimeStringToSecs(std::string(delayStr));
if (delay == 0 || delay < 0)
if (delay == 0)
return false;
}