Core: Fixed warning

This commit is contained in:
Vincent-Michael
2016-05-08 00:43:17 +02:00
parent a3b4c40073
commit b29005925e

View File

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