aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree.c b/tree.c
index e04e088..cc2ae53 100644
--- a/tree.c
+++ b/tree.c
@@ -17,7 +17,7 @@ struct tree_node {
17}; 17};
18 18
19static bool 19static bool
20tree_isBstUntil(struct tree_node *tree, int min, int max) 20tree_isBstUntil(struct tree_node *tree, T min, T max)
21{ 21{
22 if ( tree == NULL ) 22 if ( tree == NULL )
23 return true; 23 return true;