summaryrefslogtreecommitdiff
path: root/date.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-10-30 19:11:01 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-30 19:11:01 (GMT)
commit7522c589c94f00c0175a0e705b48a7218998fe89 (patch)
treee4f2827093f2c54b28fa723fbd9582cf63a3f35f /date.c
parentc02e1e4a079dd8c3cd7ec21e82403867ebf22c19 (diff)
parent38db01b7fbbf5c043dc7d397789bd8cf102b76ae (diff)
downloadgit-7522c589c94f00c0175a0e705b48a7218998fe89.zip
git-7522c589c94f00c0175a0e705b48a7218998fe89.tar.gz
git-7522c589c94f00c0175a0e705b48a7218998fe89.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/date.c b/date.c
index 29f1540..83b4166 100644
--- a/date.c
+++ b/date.c
@@ -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++) {