summaryrefslogtreecommitdiffstats
path: root/dir.c
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
commite456906f38d26c43107ac1d700beb3aa7c7bfc4d (patch)
treebb0978a5679216eb39c64b7bb999bf7c123781b5 /dir.c
parentd69d36a5d9a4287fe8cb7443a404c697cf93bc56 (diff)
downloadruby-e456906f38d26c43107ac1d700beb3aa7c7bfc4d.tar.gz
ruby-e456906f38d26c43107ac1d700beb3aa7c7bfc4d.tar.xz
ruby-e456906f38d26c43107ac1d700beb3aa7c7bfc4d.zip
* dir.c (push_braces): remove wrong const.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c4
1 files changed, 2 insertions, 2 deletions
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;