diff options
author | Jeff King <peff@peff.net> | 2013-10-24 10:42:17 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-10-25 00:41:01 +0200 |
commit | 38db01b7fbbf5c043dc7d397789bd8cf102b76ae (patch) | |
tree | c16120ab74a6ccdb092f867031520c02d4efa32e /date.c | |
parent | n is in fact unused, and is later shadowed. (diff) | |
download | git-38db01b7fbbf5c043dc7d397789bd8cf102b76ae.tar.xz git-38db01b7fbbf5c043dc7d397789bd8cf102b76ae.zip |
drop redundant semicolon in empty while
The extra semi-colon is harmless, since we really do want
the while loop to do nothing. But it does trigger a warning
from clang.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'date.c')
-rw-r--r-- | date.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -586,7 +586,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, int *num) const char *end = date; int i; - while (isalpha(*++end)); + while (isalpha(*++end)) ; for (i = 0; i < 12; i++) { |