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
This commit is contained in:
Jens-Heiner Rechtien 2004-02-04 10:59:30 +00:00
parent c00bcd1de8
commit 4c204d20ae

View file

@ -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;