diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-31 09:28:20 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-31 09:28:20 +0000 |
commit | 99a9915b04100c353fd8d79e6940ce5bde9fb290 (patch) | |
tree | 45dd63e7b9262c43ebd8ef19b0057a150d1e3eb5 /proc.c | |
parent | a7fd673519929de15447ed524b3f40d9750e7752 (diff) | |
download | ruby-99a9915b04100c353fd8d79e6940ce5bde9fb290.tar.gz ruby-99a9915b04100c353fd8d79e6940ce5bde9fb290.tar.xz ruby-99a9915b04100c353fd8d79e6940ce5bde9fb290.zip |
* suppress warnings with -Wwrite-string.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'proc.c')
-rw-r--r-- | proc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -661,7 +661,7 @@ proc_to_s(VALUE self) { VALUE str = 0; rb_proc_t *proc; - char *cname = rb_obj_classname(self); + const char *cname = rb_obj_classname(self); rb_iseq_t *iseq; const char *is_lambda; @@ -1417,7 +1417,7 @@ method_inspect(VALUE method) struct METHOD *data; VALUE str; const char *s; - char *sharp = "#"; + const char *sharp = "#"; Data_Get_Struct(method, struct METHOD, data); str = rb_str_buf_new2("#<"); |