diff options
author | Stefan Fritsch <sf@apache.org> | 2011-10-10 22:41:26 +0200 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-10-10 22:41:26 +0200 |
commit | f64bd9fc9bc60d46bc258dc08d512279a306a78d (patch) | |
tree | b40cfc062fa6df0f91991eadb65f86b4237169dc /server/util_expr_private.h | |
parent | Downgrade to DEBUG level several messages which were all redundant (diff) | |
download | apache2-f64bd9fc9bc60d46bc258dc08d512279a306a78d.tar.xz apache2-f64bd9fc9bc60d46bc258dc08d512279a306a78d.zip |
Improve error message by removing 'unexpected T_ERROR' in one case.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1181230 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | server/util_expr_private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util_expr_private.h b/server/util_expr_private.h index 4d7f6b4a94..14cc4e3ccc 100644 --- a/server/util_expr_private.h +++ b/server/util_expr_private.h @@ -111,7 +111,7 @@ typedef struct { /* flex/bison functions */ int ap_expr_yyparse(ap_expr_parse_ctx_t *context); -void ap_expr_yyerror(ap_expr_parse_ctx_t *context, char *err); +void ap_expr_yyerror(ap_expr_parse_ctx_t *context, const char *err); int ap_expr_yylex_init(void **scanner); int ap_expr_yylex_destroy(void *scanner); void ap_expr_yyset_extra(ap_expr_parse_ctx_t *context, void *scanner); |