From 73f94bb851588f04e5189d37544e87884fc489c7 Mon Sep 17 00:00:00 2001 From: ocean Date: Fri, 21 Oct 2005 06:46:41 +0000 Subject: * intern.h, struct.c (rb_struct_iv_get): constified. * marshal.c: avoid one VC++6 warning for implicit conversion from int to char. * ruby.h: ANSI styled. * bcc32/Makefile.sub (HAVE_HYPOT): added. * ext/socket/extconf.rb: BeOS is only one platform should call closesocket, so check __BEOS__ macro directly. (I was worried accidently HAVE_CLOSESOCKET is defined on windows again because it has it) * ext/socket/{getaddrinfo.c,socket.c}: ditto. ... these are all cosmetic changes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- intern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'intern.h') diff --git a/intern.h b/intern.h index 4cd58b31d3..4df7106a7a 100644 --- a/intern.h +++ b/intern.h @@ -518,7 +518,7 @@ VALUE rb_struct_alloc(VALUE, VALUE); VALUE rb_struct_aref(VALUE, VALUE); VALUE rb_struct_aset(VALUE, VALUE, VALUE); VALUE rb_struct_getmember(VALUE, ID); -VALUE rb_struct_iv_get(VALUE, char*); +VALUE rb_struct_iv_get(VALUE, const char*); VALUE rb_struct_s_members(VALUE); VALUE rb_struct_members(VALUE); /* time.c */ -- cgit v1.2.3