shithub: freetype+ttf2subf

Download patch

ref: 9817571cc96d3afa3faf553627ec1874648a6650
parent: d280ae1e8c707d2478a8f4ac2059f762cf58e6d8
author: Werner Lemberg <[email protected]>
date: Wed Oct 3 04:04:55 EDT 2018

[ftgrays] Fix typo in stand-alone mode (#54771).

* src/smooth/ftgrays.c (FT_THROW) [STANDALONE_ &&
FT_DEBUG_LEVEL_TRACE]: Fix call to `FT_ERR_CAT'.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2018-10-03  Werner Lemberg  <[email protected]>
+
+	[ftgrays] Fix typo in stand-alone mode (#54771).
+
+	* src/smooth/ftgrays.c (FT_THROW) [STANDALONE_ &&
+	FT_DEBUG_LEVEL_TRACE]: Fix call to `FT_ERR_CAT'.
+
 2018-10-02  Werner Lemberg  <[email protected]>
 
 	[psaux] Fix segfault.
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -222,10 +222,10 @@
 #endif
 
 #define FT_THROW( e )                               \
-          ( FT_Throw( FT_ERR_CAT( ErrRaster, e ),   \
+          ( FT_Throw( FT_ERR_CAT( ErrRaster_, e ),  \
                       __LINE__,                     \
                       __FILE__ )                  | \
-            FT_ERR_CAT( ErrRaster, e )            )
+            FT_ERR_CAT( ErrRaster_, e )           )
 
 #else /* !FT_DEBUG_LEVEL_TRACE */