* src/tools/ftfuzzer/ftfuzzer.cc (LLVMFuzzerTestOneInput): Fix typo.

This commit is contained in:
Werner Lemberg 2016-09-25 15:32:04 +02:00
parent 2f2e73c50c
commit d11e8b6e6d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2016-09-25 Werner Lemberg <wl@gnu.org>
* src/tools/ftfuzzer/ftfuzzer.cc (LLVMFuzzerTestOneInput): Fix typo.
2016-09-24 Werner Lemberg <wl@gnu.org>
[autofit] Tracing fixes.

View File

@ -257,7 +257,7 @@
if ( !fixed_sizes_index )
{
// set up 20pt at 72dpi as an arbitrary size
if ( FT_Set_Char_Size( face, 20 * 64, 20 * 64, 72, 72 ) );
if ( FT_Set_Char_Size( face, 20 * 64, 20 * 64, 72, 72 ) )
continue;
flags |= FT_LOAD_NO_BITMAP;
}