Skip to content

Commit 7522c58

Browse files
committed
Merge branch 'jk/date-c-double-semicolon'
* jk/date-c-double-semicolon: drop redundant semicolon in empty while
2 parents c02e1e4 + 38db01b commit 7522c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

date.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm
907907
const char *end = date;
908908
int i;
909909

910-
while (isalpha(*++end));
910+
while (isalpha(*++end))
911911
;
912912

913913
for (i = 0; i < 12; i++) {

0 commit comments

Comments
 (0)