aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--avl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/avl.c b/avl.c
index 0dfe6ca..5bb4415 100644
--- a/avl.c
+++ b/avl.c
@@ -110,8 +110,8 @@ insert_r(T x, struct tree_node *p, bool *h)
110 p->count++; /* hit counter */ 110 p->count++; /* hit counter */
111 *h = false; 111 *h = false;
112 } 112 }
113 if ( p == NULL ) 113 assert(p != NULL);
114 ERROR("das hier sollte niemals passieren"); 114
115 return p; 115 return p;
116} 116}
117/* -->8-- */ 117/* -->8-- */