summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-08 16:10:27 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-08 16:10:27 +0000
commit998113d62f43a7052028105a1bc301d0af513d87 (patch)
treeca00dbfffdb10c45be9618b61ddc8d86753e58de /file.c
parent8bc75b5bb09ebaebaf8e7178e45c7bdaa17f7ad8 (diff)
* file.c (lchmod_internal): fix warning cast from pointer to integer of
different size. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15409 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 4a41e0b444..12dc3ebba8 100644
--- a/file.c
+++ b/file.c
@@ -1872,7 +1872,7 @@ rb_file_chmod(VALUE obj, VALUE vmode)
static void
lchmod_internal(const char *path, void *mode)
{
- if (lchmod(path, (int)mode) < 0)
+ if (lchmod(path, (int)(VALUE)mode) < 0)
rb_sys_fail(path);
}