| 2123 | } |
| 2124 | |
| 2125 | static const char *json_prefix(const tal_t *ctx, |
| 2126 | const struct table_desc *td) |
| 2127 | { |
| 2128 | if (td->is_subobject) |
| 2129 | return tal_fmt(ctx, "%s%s.", json_prefix(tmpctx, td->parent), td->cmdname); |
| 2130 | return ""; |
| 2131 | } |
| 2132 | |
| 2133 | static void print_columns(const struct table_desc *td, const char *indent, |
| 2134 | const char *objsrc) |