Commit f9426172 authored by Jon Griffiths's avatar Jon Griffiths

Remove duplicate const qualifier

This causes ccanlint to fail the 'no warnings' check under clang.
Signed-off-by: default avatarJon Griffiths <jon_p_griffiths@yahoo.com>
parent 9a5d0387
......@@ -285,7 +285,7 @@ tal_t *tal_first(const tal_t *root);
* Returns NULL if there are no more immediate children. This should be safe to
* call on an altering tree unless @prev is no longer valid.
*/
tal_t *tal_next(const const tal_t *prev);
tal_t *tal_next(const tal_t *prev);
/**
* tal_parent - get the parent of a tal object.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment