From: Zoltan B. <zb...@du...> - 2005-06-26 16:11:43
|
Hi, there are some places in RLIB where "long long" variables are used. Problem is, "long" and "long long" are not the same size across architectures. "long" is the native word size of the CPU, i.e. 32 bit on 32-bit architectures, 64 bit on 64-bit architectures. Size of "long long" is double the native word size. Intention in RLIB was to use a 64-bit variable. Fixed by using the abstract type "gint64". Best regards, Zolt=E1n B=F6sz=F6rm=E9nyi |