From bc5fe20e33f7c2e54b5156302acb0c2dcb918e9e Mon Sep 17 00:00:00 2001 From: Alasdair Kergon Date: Thu, 1 Dec 2011 14:57:30 +0000 Subject: [PATCH] update old comment --- tools/dmsetup.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/dmsetup.c b/tools/dmsetup.c index f35c8a53d..7c01bad41 100644 --- a/tools/dmsetup.c +++ b/tools/dmsetup.c @@ -2049,6 +2049,11 @@ static void _display_tree_attributes(struct dm_tree_node *node) _out_char(']'); } +/* FIXME Display table or status line. (Disallow both?) */ +static void _display_tree_targets(struct dm_tree_node *node, unsigned depth) +{ +} + static void _display_tree_node(struct dm_tree_node *node, unsigned depth, unsigned first_child __attribute__((unused)), unsigned last_child, unsigned has_children) @@ -2109,7 +2114,7 @@ static void _display_tree_node(struct dm_tree_node *node, unsigned depth, if (TR_PRINT_TARGETS) { _tree_more[depth + 1] = has_children; - // FIXME _display_tree_targets(name, depth + 2); + _display_tree_targets(node, depth + 2); } }