fixed typo in previous check-in

This commit is contained in:
Arvid Norberg 2007-04-09 20:38:51 +00:00
parent ceb82bd38b
commit a1e20276a6
1 changed files with 1 additions and 1 deletions

View File

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