Fixed compiler warnings about unreferenced formal parameters when

FT_CONFIG_OPTION_INCREMENTAL is not defined.
BRANCH-2-1-5
Graham Asher 23 years ago
parent c39c3eed31
commit d9cb9eac7c
  1. 4
      src/cff/cffgload.c
  2. 4
      src/cff/cffload.c

@ -595,6 +595,10 @@
FT_Byte** pointer,
FT_ULong length )
{
#ifndef FT_CONFIG_OPTION_INCREMENTAL
length; /* Prevent compiler warning about unreferenced parameter. */
#endif
#ifdef FT_CONFIG_OPTION_INCREMENTAL
/* For incremental fonts get the character data using the */
/* callback function. */

@ -2049,6 +2049,10 @@
CFF_FontRecDict dict;
#ifndef FT_CONFIG_OPTION_INCREMENTAL
face; /* Prevent compiler warning about unreferenced parameter. */
#endif
FT_ZERO( font );
font->stream = stream;

Loading…
Cancel
Save