shithub: freetype+ttf2subf

Download patch

ref: 500dc854f6e683ed0829e8972ee223fbf7f5cd2e
parent: 16c691c155a63002fa419abce81d89968891f15d
author: Werner Lemberg <[email protected]>
date: Sat Feb 10 12:45:01 EST 2001

formatting

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/cff/cffparse.c
+++ b/src/cff/cffparse.c
@@ -306,10 +306,11 @@
   /* read a floating point number, either integer or real, */
   /* but return 1000 times the number read in.             */
   static
-  FT_Fixed cff_parse_fixed_thousand( FT_Byte** d )
+  FT_Fixed  cff_parse_fixed_thousand( FT_Byte**  d )
   {
-    return ( **d == 30 ? cff_parse_real      ( d[0], d[1], 3 )
-	               : (FT_Fixed)FT_MulFix ( cff_parse_integer( d[0], d[1] ) << 16, 1000 ) );
+    return **d ==
+      30 ? cff_parse_real     ( d[0], d[1], 3 )
+         : (FT_Fixed)FT_MulFix( cff_parse_integer( d[0], d[1] ) << 16, 1000 );
   }
 
   static