diff options
Diffstat (limited to 'ui-stats.c')
-rw-r--r-- | ui-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ static char *pretty_month(struct tm *tm) | |||
83 | static void trunc_quarter(struct tm *tm) | 83 | static void trunc_quarter(struct tm *tm) |
84 | { | 84 | { |
85 | trunc_month(tm); | 85 | trunc_month(tm); |
86 | while(tm->tm_mon % 3 != 0) | 86 | while (tm->tm_mon % 3 != 0) |
87 | dec_month(tm); | 87 | dec_month(tm); |
88 | } | 88 | } |
89 | 89 | ||