diff options
| author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 10:36:22 +0000 |
|---|---|---|
| committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-01 10:36:22 +0000 |
| commit | e401942dd609a32a7ef09a541e12d206e6db8f18 (patch) | |
| tree | 5c657837a8251a81ffe019b1bfac2e6bf8bcc986 /ext | |
| parent | a2e5eb8e8f9c45892f89090e86c98ccd07e39251 (diff) | |
| download | ruby-e401942dd609a32a7ef09a541e12d206e6db8f18.tar.gz ruby-e401942dd609a32a7ef09a541e12d206e6db8f18.tar.xz ruby-e401942dd609a32a7ef09a541e12d206e6db8f18.zip | |
* ext/digest/digest.c (rb_digest_instance_inspect): constified.
* variable.c (rb_path2class): field precision should have type int.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17775 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/digest/digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/digest/digest.c b/ext/digest/digest.c index 65ec89a84..c3e9546ab 100644 --- a/ext/digest/digest.c +++ b/ext/digest/digest.c @@ -266,7 +266,7 @@ rb_digest_instance_inspect(VALUE self) { VALUE str; size_t digest_len = 32; /* about this size at least */ - char *cname; + const char *cname; cname = rb_obj_classname(self); |
