* dir.c (enumm answer): remap NO and YES to false and true,
  respectively.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36901 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-09-05 01:44:20 +00:00
Родитель 0dc94b8b3e
Коммит 65a61792a9
1 изменённых файлов: 1 добавлений и 1 удалений

2
dir.c
Просмотреть файл

@ -1260,7 +1260,7 @@ join_path(const char *path, int dirsep, const char *name)
return buf;
}
enum answer { YES, NO, UNKNOWN };
enum answer {UNKNOWN = -1, NO, YES};
#ifndef S_ISDIR
# define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)