diff options
author | krakjoe <joe.watkins@live.co.uk> | 2014-04-13 09:07:15 +0100 |
---|---|---|
committer | krakjoe <joe.watkins@live.co.uk> | 2014-04-13 09:07:15 +0100 |
commit | b8a4a4c700af6373c87b955e64808f1b927f7ccc (patch) | |
tree | f72685b50e21bad4ed04df1ccf423706016e89d5 /phpdbg_parser.c | |
parent | 0dc9be6f1e807f4556283d2c90fa3bab50c45334 (diff) | |
download | php-git-b8a4a4c700af6373c87b955e64808f1b927f7ccc.tar.gz |
squish warnings
Diffstat (limited to 'phpdbg_parser.c')
-rw-r--r-- | phpdbg_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpdbg_parser.c b/phpdbg_parser.c index 6ea96d84d5..eabe78e793 100644 --- a/phpdbg_parser.c +++ b/phpdbg_parser.c @@ -91,7 +91,6 @@ int yyerror(phpdbg_param_t *stack, yyscan_t scanner, const char *msg) { phpdbg_error("Parse Error: %s", msg); { const phpdbg_param_t *top = stack; - zend_ulong position = 0L; while (top) { phpdbg_param_debug( @@ -99,6 +98,7 @@ int yyerror(phpdbg_param_t *stack, yyscan_t scanner, const char *msg) { top = top->next; } } + return 0; } /* Line 371 of yacc.c */ |