Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -2022,12 +2022,12 @@ dirent_match(const char *pat, rb_encoding *enc, const char *name, const struct d

struct push_glob_args {
int fd;
int flags;
const char *path;
size_t baselen;
size_t namelen;
int dirsep; /* '/' should be placed before appending child entry's name to 'path'. */
rb_pathtype_t pathtype; /* type of 'path' */
int flags;
const ruby_glob_funcs_t *funcs;
VALUE arg;
};
Expand Down Expand Up @@ -2448,8 +2448,8 @@ static int ruby_glob0(const char *path, int fd, const char *base, int flags,

struct push_glob0_args {
int fd;
const char *base;
int flags;
const char *base;
const ruby_glob_funcs_t *funcs;
VALUE arg;
};
Expand Down