summaryrefslogtreecommitdiff
path: root/ext/digest/digest.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-05 02:11:41 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-09-05 02:11:41 +0000
commit3a0f79267e5a424904146fe95b678b6581512373 (patch)
treebd4cab4c7abce11657d49d95711d6d826bab4169 /ext/digest/digest.c
parent8ed2c6fc8a141b07d2b7a024b5ec1ffa4d9250e2 (diff)
= should be ==
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2793 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/digest/digest.c')
-rw-r--r--ext/digest/digest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/digest.c b/ext/digest/digest.c
index e86188886e..a431984750 100644
--- a/ext/digest/digest.c
+++ b/ext/digest/digest.c
@@ -148,7 +148,7 @@ rb_digest_base_become(copy, obj)
algo_t *algo;
void *pctx1, *pctx2;
- if (copy = obj) return copy;
+ if (copy == obj) return copy;
rb_check_frozen(copy);
algo = get_digest_base_metadata(CLASS_OF(copy));
if (algo != get_digest_base_metadata(CLASS_OF(obj))) {