code style: use space after semicolon

This commit is contained in:
Daniel Stenberg 2017-09-11 09:27:06 +02:00
parent 67ade28571
commit 20acb58a38
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
5 changed files with 12 additions and 11 deletions

View file

@ -396,7 +396,7 @@ char *url_fgets(char *ptr, size_t size, URL_FILE *file)
/*buffer contains data */
/* look for newline or eof */
for(loop = 0;loop < want;loop++) {
for(loop = 0; loop < want; loop++) {
if(file->buffer[loop] == '\n') {
want = loop + 1;/* include newline */
break;