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





------- Additional comments from [EMAIL PROTECTED] Sun Oct  9 14:22:40 -0700 
2005 -------
The intptr-cppuhelper.diff, although an improvement, is incomplete -- it uses   
the same type for offsets as for memory sizes. Per C99, the correct types are   
off_t and size_t, the former being 64-bit (usually) and the later -- 32-bits on 
  
32-bit systems.   
   
The intptr-registry.diff replaces bad with bad -- printf expects one of the   
standard types (int, long, etc.), not an application type. The correct fix   
should be:  
   
-fprintf(stdout, "                       Data = %ld\n", (sal_Int32)value1);   
+fprintf(stdout, "                       Data = %ld\n", (long)value2);  
  
or, even:  
  
cout << "                 Data = " << value32 << endl; 
 

---------------------------------------------------------------------
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