summaryrefslogtreecommitdiff
path: root/src/smooth
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2018-10-03 08:04:55 +0200
committerWerner Lemberg <wl@gnu.org>2018-10-03 08:04:55 +0200
commit9817571cc96d3afa3faf553627ec1874648a6650 (patch)
tree947f8c73ba50df185f2648cb8a17eb6146fc8555 /src/smooth
parentd280ae1e8c707d2478a8f4ac2059f762cf58e6d8 (diff)
downloadfreetype2-9817571cc96d3afa3faf553627ec1874648a6650.tar.gz
[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'.
Diffstat (limited to 'src/smooth')
-rw-r--r--src/smooth/ftgrays.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index e40a30dc6..871e98136 100644
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -222,10 +222,10 @@ typedef ptrdiff_t FT_PtrDist;
#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 */