mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
fix an uninitialized variable
This commit is contained in:
parent
24294c8778
commit
2ac0f40f7a
1 changed files with 1 additions and 1 deletions
|
@ -519,7 +519,7 @@ value_string (progs_t *pr, etype_t type, pr_type_t *val)
|
|||
static ddef_t *
|
||||
def_string (progs_t *pr, int ofs, dstring_t *dstr)
|
||||
{
|
||||
ddef_t *def;
|
||||
ddef_t *def = 0;
|
||||
const char *name;
|
||||
|
||||
if (pr_debug->int_val && pr->debug)
|
||||
|
|
Loading…
Reference in a new issue