Skip to content

Commit b9ceb61

Browse files
blunder
1 parent 7dc11e3 commit b9ceb61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Host/posix/MainLoopPosix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ int MainLoopPosix::RunImpl::StartPoll(
169169
using namespace std::chrono;
170170
int timeout = -1;
171171
if (point) {
172-
nanosecond dur = std::max(*point - steady_clock::now(), nanoseconds(0));
172+
nanoseconds dur = std::max(*point - steady_clock::now(), nanoseconds(0));
173173
timeout = ceil<milliseconds>(dur).count();
174174
}
175175
return poll(read_fds.data(), read_fds.size(), timeout);

0 commit comments

Comments
 (0)