]> git.ozlabs.org Git - ccan/commitdiff
tal/stack: fix up after tal change.
authorRusty Russell <rusty@rustcorp.com.au>
Thu, 8 Sep 2016 10:48:52 +0000 (20:18 +0930)
committerRusty Russell <rusty@rustcorp.com.au>
Thu, 8 Sep 2016 10:48:52 +0000 (20:18 +0930)
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
ccan/tal/stack/stack.c

index 9b949e79f2a92b6ef9dca014a58f55b9aa91b8a4..00ee0166c1692a4f526f2471f91fa9c04d99ccac 100644 (file)
@@ -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;