* dir.c (push_braces): remove wrong const.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2004-02-15 12:00:51 +00:00
Родитель 3fd10dc40c
Коммит 5e379106b5
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -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,

4
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;