From 986fbd6fabdd37077718b1ecfeabae33424ed2c8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 9 Oct 2014 11:34:48 +0200 Subject: [PATCH] Typo --- src/libexpr/value.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libexpr/value.hh b/src/libexpr/value.hh index 227f5e173..408b5e087 100644 --- a/src/libexpr/value.hh +++ b/src/libexpr/value.hh @@ -119,7 +119,7 @@ static inline void mkBool(Value & v, bool b) static inline void mkNull(Value & v) { v.type = tNull; - v.app.left = v.app.right = 00; // scrub + v.app.left = v.app.right = 0; // scrub }