diff options
Diffstat (limited to 'src/alloc.c')
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 8dc45659b50..db8f39a60e0 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -6519,7 +6519,7 @@ mark_overlays (struct interval_tree *it, struct interval_node *in) they use the `null` node instead when the overlay is not deleted (i.e. is within an overlay tree). */ eassert (in); - if (in == &it->null) + if (in == ITREE_NULL) return; mark_object (in->data); |