aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-15 12:00:51 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-15 12:00:51 +0000
commit5e379106b5e6e6c61958339fd3038119505e49b5 (patch)
treebb0978a5679216eb39c64b7bb999bf7c123781b5
parent3fd10dc40c268f3ca3c580c7704e92a88d569391 (diff)
downloadruby-5e379106b5e6e6c61958339fd3038119505e49b5.tar.gz
* dir.c (push_braces): remove wrong const.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--dir.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 64e1f8d8ad..b959a99799 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Feb 15 20:56:22 2004 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
+
+ * dir.c (push_braces): remove wrong const.
+
Sun Feb 15 20:41:15 2004 NAKAMURA, Hiroshi <nakahiro@sarion.co.jp>
* sample/soap/calc/httpd.rb, sample/soap/exchange/httpd.rb,
diff --git a/dir.c b/dir.c
index 580d2617e0..96fce7339e 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;