X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=date.c;h=f011692c2f9f06e2356c2256ff8f1b496a1af2d5;hb=cfe370c6476392095bc3f18013d195b1cccd6184;hp=409a17d46424083b62f21e7e278393cee7bfa080;hpb=2c8f8b19d4f293edd78885880ed1a6166395ffdd;p=git.git diff --git a/date.c b/date.c index 409a17d46..f011692c2 100644 --- a/date.c +++ b/date.c @@ -135,7 +135,7 @@ const char *show_date(unsigned long time, int tz, enum date_mode mode) } /* Give years and months for 5 years or so */ if (diff < 1825) { - unsigned long years = (diff + 183) / 365; + unsigned long years = diff / 365; unsigned long months = (diff % 365 + 15) / 30; int n; n = snprintf(timebuf, sizeof(timebuf), "%lu year%s",