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
Priority: Critical
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.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]