aboutsummaryrefslogtreecommitdiff
path: root/src/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/output.c')
-rw-r--r--src/output.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/output.c b/src/output.c
index 47c3c47..bef37fd 100644
--- a/src/output.c
+++ b/src/output.c
@@ -1,3 +1,3 @@
/* This file is part of GNU cflow
- Copyright (C) 1997, 2005, 2007, 2009, 2010 Sergey Poznyakoff
+ Copyright (C) 1997, 2005, 2007, 2009, 2010, 2011 Sergey Poznyakoff
@@ -315,3 +315,3 @@ direct_tree(int lev, int last, Symbol *sym)
for (p = linked_list_head(sym->callee); p; p = p->next) {
- set_level_mark(lev+1, is_printable(p->next));
+ set_level_mark(lev+1, !is_last(p));
direct_tree(lev+1, is_last(p), (Symbol*)p->data);
@@ -339,3 +339,3 @@ inverted_tree(int lev, int last, Symbol *sym)
for (p = linked_list_head(sym->caller); p; p = p->next) {
- set_level_mark(lev+1, is_printable(p->next));
+ set_level_mark(lev+1, !is_last(p));
inverted_tree(lev+1, is_last(p), (Symbol*)p->data);

Return to:

Send suggestions and report system problems to the System administrator.