Whitespace.

This commit is contained in:
Werner Lemberg 2014-07-17 17:27:12 +09:00
parent 3939c200f3
commit cbbf26b705
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@
2014-07-15 Alexei Podtelezhnikov <apodtele@gmail.com>
* src/base/ftcalc.c (FT_MSB): Utilize gcc builtins.
* src/base/ftcalc.c (FT_MSB): Utilize gcc builtins.
2014-07-15 Alexei Podtelezhnikov <apodtele@gmail.com>
@ -111,7 +111,7 @@
Reported by Wojciech Mamrak <wmamrak@gmail.com>.
* src/autofit/afglobal.c (af_face_globals_compute_style_coverage),
src/autofit/afmodule.c (af_property_set): Fix `signed' vs.
src/autofit/afmodule.c (af_property_set): Fix `signed' vs.
`unsigned' issues.
* src/autofit/aflatin.c (af_latin_metrics_init_blues): Make compiler

View File

@ -248,11 +248,11 @@
#if FT_SIZEOF_INT == 4
#define FT_MSB_BUILTIN( x ) ( 31 - __builtin_clz( x ) )
#define FT_MSB_BUILTIN( x ) ( 31 - __builtin_clz( x ) )
#elif FT_SIZEOF_LONG == 4
#define FT_MSB_BUILTIN( x ) ( 31 - __builtin_clzl( x ) )
#define FT_MSB_BUILTIN( x ) ( 31 - __builtin_clzl( x ) )
#endif