From 408c003822c9628c854c2949bdc611b5fae41a8b Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 12 Jul 2012 10:47:41 -0300 Subject: [PATCH] gencat/pdf.c (convert_comp): rename to convert_comp For consistency. --- gencat/pdf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gencat/pdf.c b/gencat/pdf.c index f966bfb..59d8920 100644 --- a/gencat/pdf.c +++ b/gencat/pdf.c @@ -266,7 +266,7 @@ static void print_comment(FILE *file, const struct line *comment) /* ----- Component conversion ---------------------------------------------- */ -static void convert_comp(const struct node *node, FILE *out) +static void convert_entry(const struct node *node, FILE *out) { const struct lib *lib = node->e->file->lib; int i; @@ -295,7 +295,7 @@ static void convert_tree(const struct node *node, FILE *out) if (node->child) convert_tree(node->child, out); else - convert_comp(node, out); + convert_entry(node, out); node = node->next; } }