summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 16:13:34 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-17 16:13:34 +0000
commit8aaf906eddeb18c1b1ff203449dddc81bda56c97 (patch)
tree9d0c51e380d504465931994a9bf8a6e26126603b /ext
parent6109c561d19f938ca96de50a27bdf115665865b9 (diff)
downloadruby-8aaf906eddeb18c1b1ff203449dddc81bda56c97.tar.gz
ruby-8aaf906eddeb18c1b1ff203449dddc81bda56c97.tar.xz
ruby-8aaf906eddeb18c1b1ff203449dddc81bda56c97.zip
* ext/sha1/sha1-ruby.c (sha1_new): get rid of an unneeded
rb_obj_call_init() call. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1430 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/sha1/sha1-ruby.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/sha1/sha1-ruby.c b/ext/sha1/sha1-ruby.c
index 394ebf7c1..760ce0f2b 100644
--- a/ext/sha1/sha1-ruby.c
+++ b/ext/sha1/sha1-ruby.c
@@ -76,7 +76,6 @@ sha1_new(argc, argv, class)
if (!NIL_P(arg)) Check_Type(arg, T_STRING);
obj = Data_Make_Struct(class, SHA1_CTX, 0, free, sha1);
- rb_obj_call_init(obj, argc, argv);
SHA1Init(sha1);
if (!NIL_P(arg)) {
sha1_update(obj, arg);