Merge branch 'jk/date-c-double-semicolon'

* jk/date-c-double-semicolon:
  drop redundant semicolon in empty while
This commit is contained in:
Junio C Hamano 2013-10-30 12:11:01 -07:00
commit 7522c589c9

2
date.c
View File

@ -907,7 +907,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm
const char *end = date;
int i;
while (isalpha(*++end));
while (isalpha(*++end))
;
for (i = 0; i < 12; i++) {