1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

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

@ -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();