aboutsummaryrefslogtreecommitdiff
path: root/src/treeutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/treeutil.h')
-rw-r--r--src/treeutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/treeutil.h b/src/treeutil.h
index 76627c0..a68ff35 100644
--- a/src/treeutil.h
+++ b/src/treeutil.h
@@ -1,7 +1,7 @@
1// aux display and verification routines, helpful but not essential 1// aux display and verification routines, helpful but not essential
2struct trunk { 2struct trunk {
3 struct trunk *prev; 3 struct trunk *prev;
4 const char * str; 4 const char *str;
5}; 5};
6 6
7static void 7static void
@@ -21,7 +21,7 @@ show_tree(struct tree_node *root, struct trunk *prev, int is_left)
21 return; 21 return;
22 22
23 struct trunk this_disp = { prev, " " }; 23 struct trunk this_disp = { prev, " " };
24 const char * prev_str = this_disp.str; 24 const char *prev_str = this_disp.str;
25 show_tree(root->right, &this_disp, 1); 25 show_tree(root->right, &this_disp, 1);
26 26
27 if ( !prev ) 27 if ( !prev )