diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:11:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-30 12:11:01 -0700 |
commit | 7522c589c94f00c0175a0e705b48a7218998fe89 (patch) | |
tree | e4f2827093f2c54b28fa723fbd9582cf63a3f35f /date.c | |
parent | c02e1e4a079dd8c3cd7ec21e82403867ebf22c19 (diff) | |
parent | 38db01b7fbbf5c043dc7d397789bd8cf102b76ae (diff) | |
download | git-7522c589c94f00c0175a0e705b48a7218998fe89.tar.gz |
Merge branch 'jk/date-c-double-semicolon'
* jk/date-c-double-semicolon:
drop redundant semicolon in empty while
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++) { |