shithub: freetype+ttf2subf

Download patch

ref: cbbf26b70580ae071d44c5225d5f955aff3e11bb
parent: 3939c200f39a28e7c87d60ca4fc9de7b2823dd18
author: Werner Lemberg <[email protected]>
date: Thu Jul 17 13:27:12 EDT 2014

Whitespace.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,7 +10,7 @@
 
 2014-07-15  Alexei Podtelezhnikov  <[email protected]>
 
-	* src/base/ftcalc.c (FT_MSB): Utilize gcc builtins. 
+	* src/base/ftcalc.c (FT_MSB): Utilize gcc builtins.
 
 2014-07-15  Alexei Podtelezhnikov  <[email protected]>
 
@@ -111,7 +111,7 @@
 	Reported by Wojciech Mamrak <[email protected]>.
 
 	* 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
--- a/src/base/ftcalc.c
+++ b/src/base/ftcalc.c
@@ -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