warning in io.c

2010-10-06 Thread Edwin Eyan Moragas
Hi all, compiling picolisp gives me this warning: io.c: In function =91doEcho=92: io.c:2161: warning: =91op=92 may be used uninitialized in this function my problem is that i can't find where `op is defined. any help would be appreciated. best, /e -- UNSUBSCRIBE: mailto:picol...@software

Re: warning in io.c

2010-10-06 Thread Alexander Burger
Hi Edwin, io.c:2161: warning: =91op=92 may be used uninitialized in this function my problem is that i can't find where `op is defined. any help would be appreciated. Well, 'op' is declared in that line (2161), and initialized in line 2176. The C compiler is wrong with its warning. 'op