summaryrefslogtreecommitdiffstats
path: root/marshal.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-07-31 08:33:17 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-07-31 08:33:17 +0000
commitfc707b290ed9673e08e365b5a64d596ba059c8fe (patch)
tree0196ce08ff437a4483d9d540719b4bafc85ae32a /marshal.c
parente046d9a2607fe077d2dd889866e0ff7795ce0f30 (diff)
downloadruby-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/marshal.c b/marshal.c
index ce417be42..b7fb47c69 100644
--- a/marshal.c
+++ b/marshal.c
@@ -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