Skip to content
Snippets Groups Projects
Commit de905a63 authored by Russell Bryant's avatar Russell Bryant
Browse files

fix negative timestamp issue

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6160 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent b134548d
No related branches found
No related tags found
No related merge requests found
......@@ -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));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment