Fixed a compile conversion warning.

git-svn-id: http://yate.null.ro/svn/yate/trunk@4955 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2012-03-05 17:14:16 +00:00
parent 49e1f5586d
commit 6a19d73e58
1 changed files with 1 additions and 1 deletions

View File

@ -371,7 +371,7 @@ bool JsFile::runNative(ObjList& stack, const ExpOperation& oper, GenObject* cont
if (!op)
return false;
unsigned int epoch = 0;
long int fTime = File::getFileTime(*op,epoch) ? epoch : -1;
long int fTime = File::getFileTime(*op,epoch) ? (signed long int)epoch : -1;
ExpEvaluator::pushOne(stack,new ExpOperation(fTime));
TelEngine::destruct(op);
}