aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2015-11-02 21:07:04 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-11-02 21:07:04 +0000
commite07558fb80da4e196e8b7e371041c1e75c56b29b (patch)
treec201e3bf320f46dd21b235d8e7d627280fcb8649
parent75dd3710e72e819ce6710e93672f937550ed3818 (diff)
parent384ffe34638c91158465e143ddd867479c89cd52 (diff)
downloadbionic-brillo-m7-dev.tar.gz
Merge "Fix comment to reflect the actual reality."brillo-m7-releasebrillo-m7-mr-devbrillo-m7-dev
-rw-r--r--libc/tzcode/localtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/tzcode/localtime.c b/libc/tzcode/localtime.c
index 79c4a9a59..cb8aeed46 100644
--- a/libc/tzcode/localtime.c
+++ b/libc/tzcode/localtime.c
@@ -338,7 +338,7 @@ differ_by_repeat(const time_t t1, const time_t t0)
{
if (TYPE_BIT(time_t) - TYPE_SIGNED(time_t) < SECSPERREPEAT_BITS)
return 0;
-#if defined(__LP64__) // 32-bit Android only has a signed 32-bit time_t; 64-bit Android is fixed.
+#if defined(__LP64__) // 32-bit Android/glibc has a signed 32-bit time_t; 64-bit doesn't.
return t1 - t0 == SECSPERREPEAT;
#endif
}