Fixed a signed / unsigned conversion on 64 bit architectures.

git-svn-id: http://voip.null.ro/svn/yate@5410 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2013-02-15 10:08:30 +00:00
parent f7f69d055b
commit 0eb5df5f89
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ bool JsCode::link()
default:
continue;
}
long int offs = i - j;
long int offs = (long int)i - j;
m_linked.set(new ExpOperation(op,0,offs,jmp->barrier()),j);
}
}