mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-18 18:01:13 +00:00
fix an uninitialized warning on some versions of gcc
This commit is contained in:
parent
30744a555e
commit
48449a972f
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue