From 9c4ec22290588f6aaf893872ce8d40abb0de9bd0 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Wed, 13 Apr 2016 14:59:50 +0000 Subject: [PATCH] libvgl: do not initialize static storage. The pointer value was being initialized to 0. While it would have been better to use NULL here, it is static storage so there is no need to do so. --- lib/libvgl/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libvgl/text.c b/lib/libvgl/text.c index 02ee420e3cb4..289dd01181c9 100644 --- a/lib/libvgl/text.c +++ b/lib/libvgl/text.c @@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$"); #include #include "vgl.h" -static VGLText *VGLTextFont = 0; +static VGLText *VGLTextFont; extern byte VGLFont[];