dtagnames: Stop using cu__for_each_tag

It really wants to do cu__for_all_tags

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2009-04-01 11:01:16 -03:00
parent 75687b4719
commit 494d32fba0
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ static int class__tag_name(struct tag *self, struct cu *cu __unused,
static int cu__dump_class_tag_names(struct cu *self, void *cookie __unused)
{
cu__for_each_tag(self, class__tag_name, NULL, NULL);
cu__for_all_tags(self, class__tag_name, NULL);
return 0;
}