* [PATCH] drop redundant semicolon in empty while
@ 2013-10-24 8:42 Jeff King
0 siblings, 0 replies; only message in thread
From: Jeff King @ 2013-10-24 8:42 UTC (permalink / raw)
To: git
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>
---
date.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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++) {
--
1.8.4.1.898.g8bf8a41.dirty
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-10-24 8:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-24 8:42 [PATCH] drop redundant semicolon in empty while Jeff King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).