From 0b2bc7b5ba24eb60816ea282eaba23dffa14ac6c Mon Sep 17 00:00:00 2001
From: Jens-Heiner Rechtien
Date: Tue, 22 Apr 2008 14:10:28 +0000
Subject: [PATCH] INTEGRATION: CWS hr50 (1.58.20); FILE MERGED 2008/03/03
13:46:31 hr 1.58.20.1: #i86574#: fix warning (gcc-4.2.3)
---
unotools/source/ucbhelper/ucblockbytes.cxx | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/unotools/source/ucbhelper/ucblockbytes.cxx b/unotools/source/ucbhelper/ucblockbytes.cxx
index 0c663b928849..45ed6e728033 100644
--- a/unotools/source/ucbhelper/ucblockbytes.cxx
+++ b/unotools/source/ucbhelper/ucblockbytes.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: ucblockbytes.cxx,v $
- * $Revision: 1.59 $
+ * $Revision: 1.60 $
*
* This file is part of OpenOffice.org.
*
@@ -1560,8 +1560,9 @@ ErrCode UcbLockBytes::SetSize (ULONG nNewSize)
xTrunc->truncate();
nSize = 0;
}
- else
+ else {
DBG_WARNING("Not truncatable!");
+ }
}
if ( nSize < nNewSize )