From 9e8caf1e06ba7510160305da11a30d91dcfc23e5 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 6 Sep 2024 21:10:21 +0200 Subject: reformat source code --- src/treeutil.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/treeutil.h') 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 @@ // aux display and verification routines, helpful but not essential struct trunk { struct trunk *prev; - const char * str; + const char *str; }; static void @@ -21,7 +21,7 @@ show_tree(struct tree_node *root, struct trunk *prev, int is_left) return; struct trunk this_disp = { prev, " " }; - const char * prev_str = this_disp.str; + const char *prev_str = this_disp.str; show_tree(root->right, &this_disp, 1); if ( !prev ) -- cgit v1.3