Fix C++ compilation.


			
			
				david-pic-changes
			
			
		
Werner Lemberg 16 years ago
parent 24d72a1b0b
commit 9bf73ec407
  1. 5
      ChangeLog
  2. 6
      src/base/ftobjs.c

@ -1,3 +1,8 @@
2009-01-13 Werner Lemberg <wl@gnu.org>
* src/base/ftobjs.c (FT_Get_FSType_Flags): Cast for compilation
with C++.
2009-01-13 Werner Lemberg <wl@gnu.org>
Don't use stdlib.h and friends directly.

@ -4,7 +4,7 @@
/* */
/* The FreeType private base classes (body). */
/* */
/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by */
/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@ -4393,8 +4393,8 @@
font_info.fs_type != 0 )
return font_info.fs_type;
if ( ( os2 = FT_Get_Sfnt_Table( face, ft_sfnt_os2 ) ) != NULL &&
os2->version != 0xFFFFU )
if ( ( os2 = (TT_OS2*)FT_Get_Sfnt_Table( face, ft_sfnt_os2 ) ) != NULL &&
os2->version != 0xFFFFU )
return os2->fsType;
return 0;

Loading…
Cancel
Save