fixed typo in previous check-in
This commit is contained in:
parent
ceb82bd38b
commit
a1e20276a6
|
@ -325,7 +325,7 @@ namespace libtorrent
|
|||
{
|
||||
timespec ts;
|
||||
clock_gettime(CLOCK_MONOTONIC, &ts);
|
||||
return ptime(boost::int64_t(ts.tv_sec) + ts.nsec / 1000);
|
||||
return ptime(boost::int64_t(ts.tv_sec) + ts.tv_nsec / 1000);
|
||||
}
|
||||
|
||||
inline time_duration microsec(boost::int64_t s)
|
||||
|
|
Loading…
Reference in New Issue