diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-31 08:33:17 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-31 08:33:17 +0000 |
commit | fc707b290ed9673e08e365b5a64d596ba059c8fe (patch) | |
tree | 0196ce08ff437a4483d9d540719b4bafc85ae32a /marshal.c | |
parent | e046d9a2607fe077d2dd889866e0ff7795ce0f30 (diff) | |
download | ruby-fc707b290ed9673e08e365b5a64d596ba059c8fe.tar.gz ruby-fc707b290ed9673e08e365b5a64d596ba059c8fe.tar.xz ruby-fc707b290ed9673e08e365b5a64d596ba059c8fe.zip |
* marshal.c (Init_marshal): fix typos.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'marshal.c')
-rw-r--r-- | marshal.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1097,8 +1097,8 @@ Init_marshal() rb_define_module_function(rb_mMarshal, "load", marshal_load, -1); rb_define_module_function(rb_mMarshal, "restore", marshal_load, -1); - rb_define_const(rb_mMarshal, "MAJOR_VERSION", INT2FIX(MAJOR_VERSION)); - rb_define_const(rb_mMarshal, "MINOR_VERSION", INT2FIX(MINOR_VERSION)); + rb_define_const(rb_mMarshal, "MAJOR_VERSION", INT2FIX(MARSHAL_MAJOR)); + rb_define_const(rb_mMarshal, "MINOR_VERSION", INT2FIX(MARSHAL_MINOR)); } VALUE |