summaryrefslogtreecommitdiff
path: root/basic/source/runtime/runtime.cxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-07-19 15:33:23 +0000
committerKurt Zenker <kz@openoffice.org>2006-07-19 15:33:23 +0000
commit18c3f3712b3cef80859a2789667fde7fc9f350ea (patch)
treec9c9641c7ddcee09443d1bf11cabbb8a8c4bb64e /basic/source/runtime/runtime.cxx
parente0f9e4b4d14fb5ec78f7873920c57655a10ddfff (diff)
INTEGRATION: CWS warningfixes02 (1.28.4); FILE MERGED
2006/06/30 11:58:44 sb 1.28.4.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box.
Diffstat (limited to 'basic/source/runtime/runtime.cxx')
-rw-r--r--basic/source/runtime/runtime.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index 43591b731e2a..07614ebe65ad 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: runtime.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: hr $ $Date: 2006-06-19 17:46:38 $
+ * last change: $Author: kz $ $Date: 2006-07-19 16:33:23 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -768,7 +768,7 @@ BOOL SbiRuntime::Step()
if( pRt == pRtErrHdl )
break;
}
- while( pRt = pRt->pNext );
+ while( (pRt = pRt->pNext) );
}
// Kein Error-Hdl gefunden -> altes Vorgehen
else