summaryrefslogtreecommitdiff
path: root/src/sfnt/pngshim.c
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2014-04-22 07:33:07 +0200
committerWerner Lemberg <wl@gnu.org>2014-04-22 07:33:07 +0200
commitd9b4470e39a6799e49d3f383273d52a075f0bf3f (patch)
treee3df034a81fee55569da60c9f6749d45620eb26c /src/sfnt/pngshim.c
parent98e510ee94e552e9e9f80891aa87b2b472d0f276 (diff)
downloadfreetype2-d9b4470e39a6799e49d3f383273d52a075f0bf3f.tar.gz
* src/sfnt/pngshim.c (error_callback): s/longjmp/ft_longjmp/.
Diffstat (limited to 'src/sfnt/pngshim.c')
-rw-r--r--src/sfnt/pngshim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sfnt/pngshim.c b/src/sfnt/pngshim.c
index 878de1fef..9afbe5a58 100644
--- a/src/sfnt/pngshim.c
+++ b/src/sfnt/pngshim.c
@@ -4,7 +4,7 @@
/* */
/* PNG Bitmap glyph support. */
/* */
-/* Copyright 2013 by Google, Inc. */
+/* Copyright 2013, 2014 by Google, Inc. */
/* Written by Stuart Gill and Behdad Esfahbod. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -129,7 +129,7 @@
*error = FT_THROW( Out_Of_Memory );
#ifdef PNG_SETJMP_SUPPORTED
- longjmp( png_jmpbuf( png ), 1 );
+ ft_longjmp( png_jmpbuf( png ), 1 );
#endif
/* if we get here, then we have no choice but to abort ... */
}