From 4bb86bc20ce1ccc3e7955e6690fee4c2dd3e86bb Mon Sep 17 00:00:00 2001 From: "Emden R. Gansner" Date: Tue, 14 Mar 2017 18:14:11 -0400 Subject: [PATCH] The test for a pointer being >= 0 is silly. --- lib/label/index.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/label/index.c b/lib/label/index.c index 27c8498f5..bd3dcd585 100644 --- a/lib/label/index.c +++ b/lib/label/index.c @@ -432,7 +432,7 @@ RTreeDelete2(RTree_t * rtp, Rect_t * r, void *data, Node_t * n, register int i; assert(r && n && ee); - assert(data >= 0); + assert(data); assert(n->level >= 0); if (rtp->StatFlag) -- 2.40.0