1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/psych/parser.c: remove unused variable.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33531 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
emboss 2011-10-26 23:49:49 +00:00
parent ca05a2afbf
commit 2b7bbe18b3
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Thu Oct 27 08:47:38 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
* ext/psych/parser.c: remove unused variable.
Thu Oct 27 08:38:41 2011 Martin Bosslet <Martin.Bosslet@googlemail.com>
* ext/openssl/extconf.rb: add -Wall flag by default when compiler is

View file

@ -61,7 +61,6 @@ static VALUE allocate(VALUE klass)
static VALUE make_exception(yaml_parser_t * parser, VALUE path)
{
VALUE exception;
size_t line, column;
line = parser->context_mark.line + 1;