Problem is solved for next Railo 4.0 release.
BUT there is a simple workaround.
Workaround:
you can overwrite the existing int function with your own cfml based one the following way:
copy the code below to a file called int.cfm to lib[/ext]/railo-server/context/library/function.
Code:
<cfscript>
numeric function intt(required numeric n){
return createObject("java","java.lang.Math").floor(n);
}
</cfscript>