Fix some signedness warnings

This commit is contained in:
Eelco Dolstra 2016-01-07 14:37:39 +01:00
parent 94595f42eb
commit 9aac1861f7
2 changed files with 2 additions and 2 deletions

View file

@ -1374,7 +1374,7 @@ static void prim_genList(EvalState & state, const Pos & pos, Value * * args, Val
state.mkList(v, len);
for (unsigned int n = 0; n < len; ++n) {
for (unsigned int n = 0; n < (unsigned int) len; ++n) {
Value * arg = state.allocValue();
mkInt(*arg, n);
mkApp(*(v.listElems()[n] = state.allocValue()), *args[0], *arg);

View file

@ -3731,7 +3731,7 @@ void Worker::waitForInput()
}
}
if (!waitingForAWhile.empty() && lastWokenUp + settings.pollInterval <= after) {
if (!waitingForAWhile.empty() && lastWokenUp + (time_t) settings.pollInterval <= after) {
lastWokenUp = after;
for (auto & i : waitingForAWhile) {
GoalPtr goal = i.lock();