mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix a dreaded uninitialized variable.
Sneaky bastard :P (typo)
This commit is contained in:
parent
674c823547
commit
c03511734d
1 changed files with 1 additions and 1 deletions
|
@ -417,7 +417,7 @@ dump_dot_expr (void *_e, const char *filename)
|
|||
{
|
||||
static int id = 0;
|
||||
dstring_t *dstr = dstring_newstr ();
|
||||
expr_t *e = (expr_t *) e;
|
||||
expr_t *e = (expr_t *) _e;
|
||||
|
||||
dasprintf (dstr, "digraph expr_%p {\n", e);
|
||||
dasprintf (dstr, " layout=dot; rankdir=TB; compound=true;\n");
|
||||
|
|
Loading…
Reference in a new issue