To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82830
User sb changed the following:
What |Old value |New value
================================================================================
Status|RESOLVED |REOPENED
--------------------------------------------------------------------------------
Resolution|FIXED |
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Fri Jan 11 14:49:02 +0000
2008 -------
@ab: This should really use the new SAL_PRI... conversion specifications, that
is, change original
snprintf( cBuf, sizeof(cBuf), "Lbl%08lX", nPC );
not to
snprintf( cBuf, sizeof(cBuf), "Lbl%08lX", static_cast<long unsigned int>(nPC)
);
but to
snprintf( cBuf, sizeof(cBuf), "Lbl%08" SAL_PRIXUINT32, nPC );
as nPC's type UINT32 is a typedef for sal_uInt32. (Strictly speaking, this
requires an error check whether cBuf was too small for snprintf, of course...)
And, for consistency, any format strings used in any other calls to snprintf in
basic/source/classes/disas.cxx:1.25.46.1 lines 424, 440, 513, and 678 should
also be adapted.
---------------------------------------------------------------------
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]