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' is always initialized, but gcc is not clever enough. This warning is an old issue. I don't want to write work-around code just to silence a stupid compiler, so I got used to live with it ;-) Cheers, - Alex -- UNSUBSCRIBE: mailto:[email protected]?subject=unsubscribe
