Set TRUE/FALSE to `bool ruby_tz_uptodate_p` instead of 1/FALSE

This commit is contained in:
Kazuhiro NISHIYAMA 2019-11-25 12:10:05 +09:00
Родитель 714a0cefc1
Коммит 5c6235a83c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 262ED8DBB4222F7A
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -680,7 +680,7 @@ rb_localtime_r(const time_t *t, struct tm *result)
if (*t != (time_t)(int)*t) return NULL;
#endif
if (!ruby_tz_uptodate_p) {
ruby_tz_uptodate_p = 1;
ruby_tz_uptodate_p = TRUE;
tzset();
}
#ifdef HAVE_GMTIME_R