Fix Linux compile issue.

This commit is contained in:
Jonathan Naylor 2016-01-26 07:13:55 +00:00
parent 57a3d8bfde
commit afdf3cbb8c
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ unsigned int CStopWatch::elapsed()
elapsed += now.tv_usec / 1000U;
elapsed -= m_start.tv_usec / 1000U;
return (unsigned int)(b - a);
return elapsed;
}
#endif