Skip to content

Commit

Permalink
Merge branch 'jk/date-c-double-semicolon'
Browse files Browse the repository at this point in the history
* jk/date-c-double-semicolon:
  drop redundant semicolon in empty while
  • Loading branch information
Junio C Hamano committed Oct 30, 2013
2 parents c02e1e4 + 38db01b commit 7522c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion date.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand Down

0 comments on commit 7522c58

Please sign in to comment.