--- utils/eventlogadm.o --- cc-1552 c99: WARNING File = utils/eventlogadm.c, Line = 92 The variable "pret" is set but never used. int pret, rcnum; ^
If "pret" is going to be used, it should be type BOOL to match parse_logentry( ). Also notice the conditional just past this parse function, if ( is_eor ) { } maybe the pret should be used in that too? if ( is_eor && pret )
Created attachment 1995 [details] Change the use of pret
Fixed thanks ! Jeremy.