Skip to content

Commit

Permalink
[core] Fixed a typo in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko authored and rndi committed Aug 27, 2019
1 parent 842b584 commit 2229fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ void CTimer::sleepto(uint64_t nexttime)
#else
const uint64_t wait_us = (m_ullSchedTime - t) / CTimer::getCPUFrequency();
// The while loop ensures that (t < m_ullSchedTime).
// Division by frequency üøïðå loos prevision.
// Division by frequency may lose precision, therefore can be 0.
if (wait_us == 0)
break;

Expand Down

0 comments on commit 2229fc5

Please sign in to comment.