diff -r c8e6cf57324a -r 78f31e12fc52 absyntax_utils/function_param_iterator.cc --- a/absyntax_utils/function_param_iterator.cc Fri Feb 03 18:16:20 2012 +0000 +++ b/absyntax_utils/function_param_iterator.cc Sun Feb 05 19:09:12 2012 +0000 @@ -225,7 +225,8 @@ function_block_declaration_c *fb_decl = dynamic_cast(pou_decl); program_declaration_c * p_decl = dynamic_cast(pou_decl); - if ((NULL == f_decl) && (NULL == fb_decl) && (NULL == p_decl)) ERROR; + if ((NULL == f_decl) && (NULL == fb_decl) && (NULL == p_decl)) + ERROR; /* OK. Now initialise this object... */ this->f_decl = pou_decl;