To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=58332





------- Additional comments from [EMAIL PROTECTED] Sat Nov 26 07:20:03 -0800 
2005 -------
jbu: pointer (PyObject*) in this case is:

32bit on 32bit archs
64bit on 64bit archs

You can't convert pointer (64bit) to int (32bit) on 64bit architecture because
it "looses precision".

>  Isn't sizeof(int)=sizeof(void*) = 8?

No. On 32bit archs:

sizeof (int) = sizeof(long) = sizeof (void *) = 4

On 64bits:

sizeof (int) = 4
sizeof (long) = sizeof (void *) = 8

For more informations abot 64bit porting and possible problems, please read
kendy's presentation from last OOoCon
(http://marketing.openoffice.org/ooocon2005/presentations/friday_d9.pdf).


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to