fix an uninitialized warning on some versions of gcc

This commit is contained in:
Bill Currie 2007-04-10 08:32:58 +00:00 committed by Jeff Teunissen
parent 30744a555e
commit 48449a972f

View file

@ -685,7 +685,7 @@ PR_PrintStatement (progs_t *pr, dstatement_t *s, int contents)
char mode = fmt[1], opchar = fmt[2];
unsigned parm_ind = 0;
pr_int_t opval;
etype_t optype;
etype_t optype = ev_void;
if (mode == 'P') {
opchar = fmt[3];