summaryrefslogtreecommitdiff
path: root/rsc/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 10:59:30 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-04 10:59:30 +0000
commit4c204d20ae3cb287745d1368a95994e3f0d63c19 (patch)
tree46fed25a95960dce80a9abf3178748fbc676a855 /rsc/source
parentc00bcd1de813fd6836139d6eec7762b78f631e91 (diff)
INTEGRATION: CWS ooo20031216 (1.1.94); FILE MERGED
2003/12/23 13:53:35 waratah 1.1.94.1: #i1858# quiet an uninitialised variable warning in gcc
Diffstat (limited to 'rsc/source')
-rw-r--r--rsc/source/rscpp/cpp5.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/rsc/source/rscpp/cpp5.c b/rsc/source/rscpp/cpp5.c
index 429b0d3a5bd0..d22ce8565ba5 100644
--- a/rsc/source/rscpp/cpp5.c
+++ b/rsc/source/rscpp/cpp5.c
@@ -2,9 +2,9 @@
*
* $RCSfile: cpp5.c,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: nf $ $Date: 2001-04-18 10:31:56 $
+ * last change: $Author: hr $ $Date: 2004-02-04 11:59:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -822,7 +822,7 @@ int skip; /* TRUE if short-circuit evaluation */
* evaleval() returns the new pointer to the top of the value stack.
*/
{
- register int v1, v2;
+ register int v1, v2 = 0;
if (isbinary(op))
v2 = *--valp;