From: Paul Eggert Date: Wed, 27 Oct 2004 21:48:17 +0000 (+0000) Subject: (not_equal_tm): Remove redundant check. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d5f3781d4390d86a44e234f64f0871ee0e4f9cda;p=pspp (not_equal_tm): Remove redundant check. --- diff --git a/lib/mktime.c b/lib/mktime.c index a017a51c8d..772b4f3478 100644 --- a/lib/mktime.c +++ b/lib/mktime.c @@ -495,7 +495,6 @@ not_equal_tm (const struct tm *a, const struct tm *b) | (a->tm_mday ^ b->tm_mday) | (a->tm_mon ^ b->tm_mon) | (a->tm_year ^ b->tm_year) - | (a->tm_mday ^ b->tm_mday) | (a->tm_yday ^ b->tm_yday) | (a->tm_isdst ^ b->tm_isdst)); }