Fix compiler warning (#52640).

* src/base/ftbitmap.c (ft_bitmap_assure_buffer): Remove unused
variable.
This commit is contained in:
Werner Lemberg 2017-12-11 19:24:30 +01:00
parent a998d48401
commit 2c048a8a62
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2017-12-11 Werner Lemberg <wl@gnu.org>
Fix compiler warning (#52640).
* src/base/ftbitmap.c (ft_bitmap_assure_buffer): Remove unused
variable.
2017-12-08 Azzuro <azzuro@team-mediaportal.com>
* builds/windows/vc2010/freetype.vcxproj: Adjust output directory.

View File

@ -156,7 +156,7 @@
int pitch;
int new_pitch;
FT_UInt bpp;
FT_UInt i, width, height;
FT_UInt width, height;
unsigned char* buffer = NULL;