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:
parent
c00bcd1de8
commit
4c204d20ae
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue