mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
fix negative timestamp issue
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6160 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -104,7 +104,7 @@ struct timeval ast_tv(int sec, int usec),
|
||||
)
|
||||
#endif
|
||||
AST_INLINE_API(
|
||||
struct timeval ast_tv(int sec, int usec),
|
||||
struct timeval ast_tv(time_t sec, suseconds_t usec),
|
||||
{
|
||||
struct timeval t;
|
||||
t.tv_sec = sec;
|
||||
@@ -119,7 +119,7 @@ struct timeval ast_tv(int sec, int usec),
|
||||
* in the form ast_samp2tv(milliseconds, 1000)
|
||||
*/
|
||||
AST_INLINE_API(
|
||||
struct timeval ast_samp2tv(long _nsamp, long _rate),
|
||||
struct timeval ast_samp2tv(unsigned int _nsamp, unsigned int _rate),
|
||||
{
|
||||
return ast_tv(_nsamp / _rate, (_nsamp % _rate) * (1000000 / _rate));
|
||||
}
|
||||
|
Reference in New Issue
Block a user