Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jk/date-c-double-semicolon'
author
Junio C Hamano
<gitster@pobox.com>
Wed, 30 Oct 2013 19:11:01 +0000
(12:11 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 30 Oct 2013 19:11:01 +0000
(12:11 -0700)
* jk/date-c-double-semicolon:
drop redundant semicolon in empty while
date.c
patch
|
blob
|
history
raw
(from parent 1:
c02e1e4
)
diff --git
a/date.c
b/date.c
index 29f15404feab0d98f377b312a3fcf5d8888fdb0a..83b4166344b31ea615603acaeb95a873f2c05077 100644
(file)
--- 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++) {