fixing compilation warning

This commit is contained in:
David Turner 2003-12-19 20:25:14 +00:00
parent 451598cc34
commit 119de2aaa3
2 changed files with 10 additions and 10 deletions

View File

@ -184,7 +184,7 @@ THE SOFTWARE.
char *istr = NULL, *bstr = NULL;
char *sstr = NULL, *astr = NULL;
int parts = 0, len = 0;
int parts = 0, len = 0;
face->style_flags = 0;
@ -238,7 +238,7 @@ THE SOFTWARE.
face->style_name = (char *)"Regular";
else
{
char *style, *s;
char *style, *s;
unsigned int i;
@ -386,7 +386,7 @@ THE SOFTWARE.
else
root->family_name = 0;
if ( ( error = bdf_interpret_style( face ) ) )
if ( ( error = bdf_interpret_style( face ) ) != 0 )
goto Exit;
root->num_glyphs = font->glyphs_size; /* unencoded included */
@ -739,7 +739,7 @@ THE SOFTWARE.
* BDF SERVICE
*
*/
static FT_Error
bdf_get_bdf_property( BDF_Face face,
const char* prop_name,
@ -787,9 +787,9 @@ THE SOFTWARE.
{
*acharset_encoding = face->charset_encoding;
*acharset_registry = face->charset_registry;
return 0;
}
}
static const FT_Service_BDFRec bdf_service_bdf =
@ -804,7 +804,7 @@ THE SOFTWARE.
* SERVICES LIST
*
*/
static const FT_ServiceDescRec bdf_services[] =
{
{ FT_SERVICE_ID_BDF, &bdf_service_bdf },

View File

@ -874,7 +874,7 @@ THE SOFTWARE.
char *istr = NULL, *bstr = NULL;
char *sstr = NULL, *astr = NULL;
int parts = 0, len = 0;
int parts = 0, len = 0;
face->style_flags = 0;
@ -926,7 +926,7 @@ THE SOFTWARE.
face->style_name = (char *)"Regular";
else
{
char *style, *s;
char *style, *s;
unsigned int i;
@ -1040,7 +1040,7 @@ THE SOFTWARE.
if ( face->accel.constantWidth )
root->face_flags |= FT_FACE_FLAG_FIXED_WIDTH;
if ( ( error = pcf_interpret_style( face ) ) )
if ( ( error = pcf_interpret_style( face ) ) != 0 )
goto Exit;
prop = pcf_find_property( face, "FAMILY_NAME" );