From: Ton v. O. <tvo...@us...> - 2006-08-23 17:52:56
|
Update of /cvsroot/easycalc/easycalc/mlib In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv316 Modified Files: stack.c Log Message: Eliminate compiler warnings. Index: stack.c =================================================================== RCS file: /cvsroot/easycalc/easycalc/mlib/stack.c,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** stack.c 8 Oct 2002 21:26:32 -0000 1.31 --- stack.c 23 Aug 2006 17:52:49 -0000 1.32 *************** *** 231,235 **** { UInt32 intarg; ! double realarg; Complex *cplxarg; CError err=c_noerror; --- 231,235 ---- { UInt32 intarg; ! double realarg = 0.0; Complex *cplxarg; CError err=c_noerror; *************** *** 817,820 **** --- 817,821 ---- Int16 retval=c_noerror; Trpn item; + #ifdef SPECFUN_ENABLED Int16 i; Boolean listsimul; *************** *** 822,825 **** --- 823,827 ---- rpntype type; CError err; + #endif /* allocate rpnstack to maximum of input elements */ |