NULL vs. 0 Same.

2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>

	* font-method.c: (ensure_font_list): NULL vs. 0
	* ftstream-vfs.c: (vfs_stream_close): Same.
This commit is contained in:
Kjartan Maraas 2004-12-25 14:37:33 +00:00 committed by Kjartan Maraas
parent ea68d7a0c9
commit 2fec3922de
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-12-25 Kjartan Maraas <kmaraas@gnome.org>
* font-method.c: (ensure_font_list): NULL vs. 0
* ftstream-vfs.c: (vfs_stream_close): Same.
2004-12-10 James Henstridge <james@jamesh.id.au>
* Makefile.am (install-desktop-database): update the desktop file

View file

@ -161,7 +161,7 @@ ensure_font_list(void)
pat = FcPatternCreate();
os = FcObjectSetBuild(FC_FILE, FC_FAMILY, FC_WEIGHT, FC_SLANT, 0);
font_list = FcFontList(0, pat, os);
font_list = FcFontList(NULL, pat, os);
FcPatternDestroy(pat);
FcObjectSetDestroy(os);

View file

@ -55,7 +55,7 @@ vfs_stream_close(FT_Stream stream)
stream->descriptor.pointer = NULL;
stream->size = 0;
stream->base = 0;
stream->base = NULL;
}
static FT_Error