Fix a dreaded uninitialized variable.

Sneaky bastard :P (typo)
This commit is contained in:
Bill Currie 2012-11-19 12:52:24 +09:00
parent 674c823547
commit c03511734d

View file

@ -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");