Browse Source

tal/stack: fix up after tal change.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell 9 years ago
parent
commit
9a5d0387e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/tal/stack/stack.c

+ 1 - 1
ccan/tal/stack/stack.c

@@ -12,7 +12,7 @@ static void _free_frame(tal_t *o)
 
 tal_t *tal_newframe_(const char *label)
 {
-	h = tal_alloc_(h, 0, false, label);
+	h = tal_alloc_(h, 0, false, false, label);
 	assert(h != NULL);
 	tal_add_destructor(h, _free_frame);
 	return h;