diff options
Diffstat (limited to 'avl.c')
| -rw-r--r-- | avl.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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-- */ |
