X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=notmuch-time.c;h=cc7ffc239fb003249e5b8d62301870c1c2051305;hp=2734b36a566e5a9fe63cd9ff0d1246405116abca;hb=HEAD;hpb=2f4beda434c59f9e2f5b7c32d26543bad7217ad4 diff --git a/notmuch-time.c b/notmuch-time.c index 2734b36a..cd45818b 100644 --- a/notmuch-time.c +++ b/notmuch-time.c @@ -46,7 +46,7 @@ const char * notmuch_time_relative_date (const void *ctx, time_t then) { struct tm tm_now, tm_then; - time_t now = time(NULL); + time_t now = time (NULL); time_t delta; char *result; @@ -76,26 +76,25 @@ notmuch_time_relative_date (const void *ctx, time_t then) if (delta <= 7 * DAY) { if (tm_then.tm_wday == tm_now.tm_wday && - delta < DAY) - { + delta < DAY) { strftime (result, RELATIVE_DATE_MAX, - "Today %R", &tm_then); /* Today 12:30 */ + "Today %R", &tm_then); /* Today 12:30 */ return result; } else if ((tm_now.tm_wday + 7 - tm_then.tm_wday) % 7 == 1) { strftime (result, RELATIVE_DATE_MAX, - "Yest. %R", &tm_then); /* Yest. 12:30 */ + "Yest. %R", &tm_then); /* Yest. 12:30 */ return result; } else { if (tm_then.tm_wday != tm_now.tm_wday) { strftime (result, RELATIVE_DATE_MAX, - "%a. %R", &tm_then); /* Mon. 12:30 */ + "%a. %R", &tm_then); /* Mon. 12:30 */ return result; } } } strftime (result, RELATIVE_DATE_MAX, - "%B %d", &tm_then); /* October 12 */ + "%B %d", &tm_then); /* October 12 */ return result; } #undef MINUTE