]> granicus.if.org Git - graphviz/commitdiff
glCompSetNew: remove an open coded NULL
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 02:49:06 +0000 (19:49 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 11 Sep 2021 15:37:10 +0000 (08:37 -0700)
lib/glcomp/glcompset.c

index 9e19e6f31648e9143e3b3958e3e44c84c80d8c8a..d174592153eb39ba63a679ab5cbf878f5ae29318 100644 (file)
@@ -16,6 +16,7 @@
 #include <glcomp/glcompmouse.h>
 
 #include <glcomp/glutils.h>
+#include <stdlib.h>
 
 static GLfloat startX, startY;
 
@@ -204,7 +205,7 @@ glCompSet *glCompSetNew(int w, int h)
     s->common.height = (GLfloat) h;
     s->groupCount = 0;
     s->objcnt = 0;
-    s->obj = (glCompObj **) 0;
+    s->obj = NULL;
     s->textureCount = 0;
     s->textures = (glCompTex **) 0;
     s->common.font = glNewFontFromParent((glCompObj *) s, NULL);