From 119de2aaa348dc3674181b7d1b4db690b138e28e Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 19 Dec 2003 20:25:14 +0000 Subject: [PATCH] fixing compilation warning --- src/bdf/bdfdrivr.c | 14 +++++++------- src/pcf/pcfread.c | 6 +++--- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/bdf/bdfdrivr.c b/src/bdf/bdfdrivr.c index 3e57c3450..a231fcd4f 100644 --- a/src/bdf/bdfdrivr.c +++ b/src/bdf/bdfdrivr.c @@ -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 }, diff --git a/src/pcf/pcfread.c b/src/pcf/pcfread.c index fcf362872..f29512fad 100644 --- a/src/pcf/pcfread.c +++ b/src/pcf/pcfread.c @@ -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" );