This commit is contained in:
Eelco Dolstra 2014-10-09 11:34:48 +02:00
parent b6809608cc
commit 986fbd6fab

View file

@ -119,7 +119,7 @@ static inline void mkBool(Value & v, bool b)
static inline void mkNull(Value & v) static inline void mkNull(Value & v)
{ {
v.type = tNull; v.type = tNull;
v.app.left = v.app.right = 00; // scrub v.app.left = v.app.right = 0; // scrub
} }