diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-20 18:02:17 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-06-20 18:02:17 +0000 |
commit | 1b7465e893131c8a8b27078704223ecfb2311119 (patch) | |
tree | 1ef49f987a8f65bdb2c1396bf681c4f4e2ca8b6c /ext/pty/pty.c | |
parent | 866e083484738db8ba8b8b37674d9292ef7cb84a (diff) |
* eval.c, file.c, etc.: code-cleanup patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:08029]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10351 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/pty/pty.c')
-rw-r--r-- | ext/pty/pty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pty/pty.c b/ext/pty/pty.c index ef357ace5c..5f73d286f7 100644 --- a/ext/pty/pty.c +++ b/ext/pty/pty.c @@ -196,7 +196,7 @@ establishShell(int argc, VALUE *argv, struct pty_info *info) int status; if (argc == 0) { - char *shellname; + const char *shellname; if ((p = getenv("SHELL")) != NULL) { shellname = p; |