diff options
| author | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 15:47:54 +0000 |
|---|---|---|
| committer | michal <michal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-08-21 15:47:54 +0000 |
| commit | fa79abb533cc03018a50945bc1d88b2e1b90248f (patch) | |
| tree | 3b51176716a877c59eebbe6e82533d2cae3d7bc5 /file.c | |
| parent | 2ab0494d233b2ee5f7eed92b7dfd0486ab36396d (diff) | |
| download | ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.gz ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.tar.xz ruby-fa79abb533cc03018a50945bc1d88b2e1b90248f.zip | |
*.c: Int vs Long cleanup
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2734 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -85,7 +85,7 @@ apply2files(func, vargs, arg) VALUE vargs; void *arg; { - int i; + long i; VALUE path; struct RArray *args = RARRAY(vargs); @@ -2427,7 +2427,7 @@ rb_find_file_ext(filep, ext) char *path, *found; char *f = RSTRING(*filep)->ptr; VALUE fname; - int i, j; + long i, j; if (f[0] == '~') { fname = rb_file_s_expand_path(1, filep); @@ -2508,7 +2508,7 @@ rb_find_file(path) } if (rb_load_path) { - int i; + long i; Check_Type(rb_load_path, T_ARRAY); tmp = rb_ary_new(); |
