changeset 32828:819c51338f75

Initialize array in a compiler independent way.
author ib
date Wed, 16 Feb 2011 18:21:02 +0000
parents 2b0b38bfda8d
children d1ae72443bd2
files gui/skin/font.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gui/skin/font.c	Wed Feb 16 18:10:04 2011 +0000
+++ b/gui/skin/font.c	Wed Feb 16 18:21:02 2011 +0000
@@ -27,7 +27,7 @@
 #include "../interface.h"
 #include "libavutil/avstring.h"
 
-bmpFont * Fonts[MAX_FONTS] = {};
+bmpFont * Fonts[MAX_FONTS] = {NULL};
 
 int fntAddNewFont( char * name )
 {