To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83041
Issue #|83041
Summary|to-be-SRC680_m235: binfilter warning breaking the buil
|d
Component|porting
Version|680m234
Platform|Opteron/x86_64
URL|
OS/Version|Linux
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P2
Subcomponent|code
Assigned to|vg
Reported by|pjanik
------- Additional comments from [EMAIL PROTECTED] Sat Oct 27 17:15:17 +0000
2007 -------
Hi,
this warnings breaks WaE build:
/home/oo/BuildDir/ooo_SRC680_m235_src/binfilter/bf_so3/source/persist/transprt.cxx:
In member
function 'virtual ErrCode UcbTransportLockBytes::ReadAt(ULONG, void*, ULONG,
ULONG*) const':
/home/oo/BuildDir/ooo_SRC680_m235_src/binfilter/bf_so3/source/persist/transprt.cxx:723:
warning:
comparison between signed and unsigned integer expressions
/home/oo/BuildDir/ooo_SRC680_m235_src/binfilter/bf_so3/source/persist/transprt.cxx:730:
warning:
comparison between signed and unsigned integer expressions
Patch:
--- bf_so3/source/persist/transprt.cxx~ 2007-10-27 19:11:21.000000000 +0200
+++ bf_so3/source/persist/transprt.cxx 2007-10-27 19:11:21.000000000 +0200
@@ -717,7 +717,7 @@
{
while (!m_bTerminated)
{
- sal_Int64 nLen = xSeekable->getLength();
+ sal_uInt64 nLen = xSeekable->getLength();
if (IsSynchronMode())
{
if (nPos + nCount > nLen)
---------------------------------------------------------------------
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]