Use proper variable type.

git-svn-id: http://yate.null.ro/svn/yate/trunk@1686 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2008-01-28 12:08:47 +00:00
parent 468a1a4019
commit ef606f9ad0
1 changed files with 1 additions and 1 deletions

View File

@ -2334,7 +2334,7 @@ void ISDNQ931::attach(ISDNLayer2* q921)
// Add 1000 ms to minimum value to allow the lower layer to re-establish
// the data link before we make a retransmission
if (q) {
u_int32_t min = q->dataTimeout();
u_int64_t min = q->dataTimeout();
if (m_callDiscTimer.interval() <= min)
m_callDiscTimer.interval(min + 1000);
if (m_callRelTimer.interval() <= min)