mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-31 08:41:11 +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];
|
char mode = fmt[1], opchar = fmt[2];
|
||||||
unsigned parm_ind = 0;
|
unsigned parm_ind = 0;
|
||||||
pr_int_t opval;
|
pr_int_t opval;
|
||||||
etype_t optype;
|
etype_t optype = ev_void;
|
||||||
|
|
||||||
if (mode == 'P') {
|
if (mode == 'P') {
|
||||||
opchar = fmt[3];
|
opchar = fmt[3];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue