diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-12 05:15:33 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-12-12 05:15:33 +0000 |
commit | 0158c706458eb092ddf9619275457a29b3318c80 (patch) | |
tree | 027e65d8f98996f37a319757ab270d2f322b0c6b /ext/digest/digest.c | |
parent | a357c6a92649010b51d2e00e04abf9c09c3920cd (diff) | |
download | ruby-0158c706458eb092ddf9619275457a29b3318c80.tar.gz |
remove unused variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9679 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/digest.c')
-rw-r--r-- | ext/digest/digest.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/digest/digest.c b/ext/digest/digest.c index a63d353ddf..a11996e5e9 100644 --- a/ext/digest/digest.c +++ b/ext/digest/digest.c @@ -84,7 +84,6 @@ rb_digest_base_s_digest(VALUE klass, VALUE str) { algo_t *algo; void *pctx; - unsigned char *digest; volatile VALUE obj = rb_digest_base_alloc(klass); algo = get_digest_base_metadata(klass); @@ -104,7 +103,6 @@ rb_digest_base_s_hexdigest(VALUE klass, VALUE str) { algo_t *algo; void *pctx; - unsigned char *hexdigest; volatile VALUE obj = rb_digest_base_alloc(klass); algo = get_digest_base_metadata(klass); @@ -170,7 +168,6 @@ rb_digest_base_digest(VALUE self) { algo_t *algo; void *pctx1, *pctx2; - unsigned char *digest; size_t len; VALUE str; |