summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-25 15:05:53 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2019-11-25 15:09:09 +0900
commit09e76e982801a838688ea80be29844ed91c23f46 (patch)
tree123e2e669a8eee829445c8c67bc57abff8dd7248 /time.c
parente27acb61485189fd7647741b6ca19920989dec03 (diff)
Improve consistency of bool/true/false
Diffstat (limited to 'time.c')
-rw-r--r--time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time.c b/time.c
index 90bd9ac198..3cb5a060f9 100644
--- a/time.c
+++ b/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 = TRUE;
+ ruby_tz_uptodate_p = true;
tzset();
}
#ifdef HAVE_GMTIME_R