* src/pcf/pcfread.c (pcf_get_bitmaps): Remove unused variable

`bitmaps'.  From Yu Lei <yulei0@gmail.com>.
This commit is contained in:
Werner Lemberg 2006-01-08 13:43:30 +00:00
parent 05cda08bcb
commit e8f92af3f0
2 changed files with 7 additions and 4 deletions

View File

@ -1,4 +1,9 @@
2005-12-28 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
2006-01-08 Werner Lemberg <wl@gnu.org>
* src/pcf/pcfread.c (pcf_get_bitmaps): Remove unused variable
`bitmaps'. From Yu Lei <yulei0@gmail.com>.
2005-12-28 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
* src/sfnt/sfnt/ttbdf.c: Add newline '\n' to the end of file, for
MPW compiler.

View File

@ -2,7 +2,7 @@
FreeType font driver for pcf fonts
Copyright 2000, 2001, 2002, 2003, 2004, 2005 by
Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 by
Francesco Zappa Nardelli
Permission is hereby granted, free of charge, to any person obtaining a copy
@ -571,7 +571,6 @@ THE SOFTWARE.
FT_Long bitmapSizes[GLYPHPADOPTIONS];
FT_ULong format, size;
int nbitmaps, i, sizebitmaps = 0;
char* bitmaps;
error = pcf_seek_to_table_type( stream,
@ -650,7 +649,6 @@ THE SOFTWARE.
Bail:
FT_FREE ( offsets );
FT_FREE ( bitmaps );
return error;
}