mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-22 04:01:17 +00:00
warnings fix for older gcc/egcs
This commit is contained in:
parent
b139acafc2
commit
525f2b78f4
1 changed files with 2 additions and 2 deletions
|
@ -360,9 +360,9 @@ PR_ExecuteProgram
|
||||||
*/
|
*/
|
||||||
void PR_ExecuteProgram (func_t fnum)
|
void PR_ExecuteProgram (func_t fnum)
|
||||||
{
|
{
|
||||||
eval_t *a, *b, *c;
|
eval_t *a=0, *b=0, *c=0;
|
||||||
int s;
|
int s;
|
||||||
dstatement_t *st;
|
dstatement_t *st=0;
|
||||||
dfunction_t *f, *newf;
|
dfunction_t *f, *newf;
|
||||||
int runaway;
|
int runaway;
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in a new issue