[MPlayer-cvslog] r32915 - trunk/gui/skin/font.c

Diego Biurrun diego at biurrun.de
Thu Feb 17 12:06:27 CET 2011


On Wed, Feb 16, 2011 at 07:21:02PM +0100, ib wrote:
> 
> Log:
> Initialize array in a compiler independent way.
> 
> --- trunk/gui/skin/font.c	Wed Feb 16 19:10:04 2011	(r32914)
> +++ trunk/gui/skin/font.c	Wed Feb 16 19:21:02 2011	(r32915)
> @@ -27,7 +27,7 @@
>  
> -bmpFont * Fonts[MAX_FONTS] = {};
> +bmpFont * Fonts[MAX_FONTS] = {NULL};

I think the standard way to write this is '{ 0 }'.

Diego


More information about the MPlayer-cvslog mailing list