[ https://issues.apache.org/jira/browse/AXIS2C-1269?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
S.Uthaiyashankar resolved AXIS2C-1269. -------------------------------------- Resolution: Fixed Fixed in revision 728630 > compile error with guththila_error.h > ------------------------------------ > > Key: AXIS2C-1269 > URL: https://issues.apache.org/jira/browse/AXIS2C-1269 > Project: Axis2-C > Issue Type: Bug > Components: guththila > Affects Versions: 1.5.0 > Environment: AIX 5 > Reporter: Eddie Hsu > Assignee: S.Uthaiyashankar > Priority: Critical > Fix For: 1.6.0 > > > There's a unnecessary comma in enum "guththila_error_l" > make it fail to compile. > EXTERN_C_START() typedef enum guththila_error_l > { > GUTHTHILA_VALIDITY_ERROR, > GUTHTHILA_VALIDITY_WARNING, > GUTHTHILA_PARSER_ERROR, > GUTHTHILA_PARSER_WARNING, > } guththila_error_level; > I think it seems should be like this > EXTERN_C_START() typedef enum guththila_error_l > { > GUTHTHILA_VALIDITY_ERROR, > GUTHTHILA_VALIDITY_WARNING, > GUTHTHILA_PARSER_ERROR, > GUTHTHILA_PARSER_WARNING > } guththila_error_level; -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.