forked from minhngoc25a/freetype2
[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'.
This commit is contained in:
parent
d280ae1e8c
commit
9817571cc9
|
@ -1,3 +1,10 @@
|
|||
2018-10-03 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[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 <wl@gnu.org>
|
||||
|
||||
[psaux] Fix segfault.
|
||||
|
|
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue