]> granicus.if.org Git - graphviz/commitdiff
smyrna: remove an open coded NULL
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 30 Oct 2021 16:34:38 +0000 (09:34 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 6 Nov 2021 15:59:03 +0000 (08:59 -0700)
lib/glcomp/glcompfont.c

index 5d832fd5be549ef59f71dba0ee8b7f84adbe6718..b881bc3654e18ae7b7b7d39043e077774c6967cb 100644 (file)
@@ -15,6 +15,7 @@
 #include <glcomp/glutils.h>
 #include <common/memory.h>
 #include <GL/glut.h>
+#include <stddef.h>
 
 static void print_bitmap_string(void *font, char *s)
 {
@@ -60,7 +61,7 @@ glCompFont *glNewFont (glCompSet * s, char *text, glCompColor * c,glCompFontType
     if (font->type == gluttext)
        font->glutfont = DEFAULT_GLUT_FONT;
     else
-       font->glutfont = (void *) 0;
+       font->glutfont = NULL;
 
     font->fontdesc = strdup(fontdesc);
     font->size = fs;