From e456906f38d26c43107ac1d700beb3aa7c7bfc4d Mon Sep 17 00:00:00 2001 From: ocean Date: Sun, 15 Feb 2004 12:00:51 +0000 Subject: * dir.c (push_braces): remove wrong const. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ dir.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 64e1f8d8a..b959a9979 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Feb 15 20:56:22 2004 Hirokazu Yamamoto + + * dir.c (push_braces): remove wrong const. + Sun Feb 15 20:41:15 2004 NAKAMURA, Hiroshi * sample/soap/calc/httpd.rb, sample/soap/exchange/httpd.rb, diff --git a/dir.c b/dir.c index 580d2617e..96fce7339 100644 --- a/dir.c +++ b/dir.c @@ -1348,8 +1348,8 @@ push_braces(ary, s, flags) const char *s; int flags; { - char *buf; - const char *p, *t, *b; + char *buf, *b; + const char *p, *t; const char *lbrace, *rbrace; int nest = 0; -- cgit