summaryrefslogtreecommitdiff
path: root/ext/digest/digest.c
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 05:29:27 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-09-06 05:29:27 +0000
commit970dbfde6f041de3660f5822bd486663742aeef3 (patch)
treea8b4a8d23514fbf90a1fe31a804b22e92ee7a2ec /ext/digest/digest.c
parent99ae768645511373a0282f360d089bcca1549a09 (diff)
* ext/digest/digest.c (rb_digest_base_s_hexdigest): remove a debug
print. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1736 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 5355776119..3d47685aac 100644
--- a/ext/digest/digest.c
+++ b/ext/digest/digest.c
@@ -151,7 +151,7 @@ rb_digest_base_s_hexdigest(class, str)
hexdigest = xmalloc(len + 1); /* +1 is for '\0' */
algo->end_func(pctx, hexdigest);
- puts(hexdigest);
+
obj = rb_str_new(hexdigest, len);
free(hexdigest);