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

* eval.c (ruby_run): avoid VC++ warning.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2001-08-01 06:45:13 +00:00
parent 30637ef7e9
commit cc6d8c466c
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Wed Aug 1 15:42:16 2001 Usaku Nakamura <usa@ruby-lang.org>
* eval.c (ruby_run): avoid VC++ warning.
Tue Jul 31 17:30:53 2001 Usaku Nakamura <usa@ruby-lang.org>
* marshal.c (Init_marshal): fix typos.

2
eval.c
View file

@ -1193,7 +1193,7 @@ ruby_run()
if (ruby_nerrs > 0) exit(ruby_nerrs);
Init_stack(&tmp);
Init_stack((void*)&tmp);
PUSH_TAG(PROT_NONE);
PUSH_ITER(ITER_NOT);
if ((state = EXEC_TAG()) == 0) {