Fixed incorect argument type in jlong_to_jdouble() which was causing Java long values to get mangled.

This commit is contained in:
fur 1998-07-03 00:00:15 +00:00
parent 6dc7057dbe
commit 0d6b7f4c5f

View File

@ -312,7 +312,7 @@ static jlong jsint_to_jlong(jsint ivalue)
return SInt64ToWide(val);
}
static jdouble jlong_to_jdouble(lvalue)
static jdouble jlong_to_jdouble(jlong lvalue)
{
SInt64 val = WideToSInt64(lvalue);
return SInt64ToLongDouble(val);