diff options
| author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-13 18:44:34 +0000 |
|---|---|---|
| committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-01-13 18:44:34 +0000 |
| commit | fb268fe496060c4543e69bb8d466495932f31787 (patch) | |
| tree | 504a789d860b37e524269ecbc808aa9a9085e151 /file.c | |
| parent | 0fc3bcd1f846e387222d11cff84d9fe12285af89 (diff) | |
| download | ruby-fb268fe496060c4543e69bb8d466495932f31787.tar.gz ruby-fb268fe496060c4543e69bb8d466495932f31787.tar.xz ruby-fb268fe496060c4543e69bb8d466495932f31787.zip | |
* file.c (rb_file_s_chmod): avoid warning where sizeof(int) !=
sizeof(void*).
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9832 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1695,7 +1695,7 @@ chmod_internal(path, mode) const char *path; void *mode; { - if (chmod(path, (int)mode) < 0) + if (chmod(path, *(int *)mode) < 0) rb_sys_fail(path); } @@ -1726,7 +1726,7 @@ rb_file_s_chmod(argc, argv) rb_scan_args(argc, argv, "1*", &vmode, &rest); mode = NUM2INT(vmode); - n = apply2files(chmod_internal, rest, (void *)(long)mode); + n = apply2files(chmod_internal, rest, &mode); return LONG2FIX(n); } |
