From 1e3747ca5d1a6f607f8e56fb94e3daaf6ad623cb Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 15 Aug 2005 04:16:04 +0000 Subject: [PATCH] Replace perror with perror_. Remove FT_BEGIN_STMNT and FT_END_STMNT. 2005-08-15 Behdad Esfahbod * pango/opentype/ftglue.h: Replace perror with perror_. Remove FT_BEGIN_STMNT and FT_END_STMNT. (#313477) --- src/ftglue.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ftglue.h b/src/ftglue.h index cc780fe..57c5ebe 100644 --- a/src/ftglue.h +++ b/src/ftglue.h @@ -116,13 +116,13 @@ ftglue_face_goto_table( FT_Face face, ( (_ptr) = ftglue_realloc( memory, (_ptr), (_oldsz), (_newsz), &error ), error != 0 ) #define FREE(_ptr) \ - FT_BEGIN_STMNT \ + do { \ if ( (_ptr) ) \ { \ ftglue_free( memory, _ptr ); \ _ptr = NULL; \ } \ - FT_END_STMNT + } while (0) #define ALLOC_ARRAY(_ptr,_count,_type) \ ALLOC(_ptr,(_count)*sizeof(_type)) @@ -136,14 +136,14 @@ ftglue_face_goto_table( FT_Face face, FTGLUE_API( FT_Pointer ) ftglue_alloc( FT_Memory memory, FT_ULong size, - FT_Error *perror ); + FT_Error *perror_ ); FTGLUE_API( FT_Pointer ) ftglue_realloc( FT_Memory memory, FT_Pointer block, FT_ULong old_size, FT_ULong new_size, - FT_Error *perror ); + FT_Error *perror_ ); FTGLUE_API( void ) ftglue_free( FT_Memory memory, -- 2.7.4